27 $this->groups = array();
31 if(!is_array($xml_groups))
33 $xml_groups = array($xml_groups);
37 for($i = 0; $i < count($xml_groups); $i++)
39 $group = $xml_groups[$i];
40 $column = trim($group->attrs->column);
46 $column = $dbParser->parseExpression($column);
47 $this->groups[] = $column;
55 foreach($this->groups as $group)
57 $output .=
"'" . $group .
"' ,";