1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Query/Groupby.php
2006-09-26 15:00:13 +00:00

31 lines
875 B
PHP

<?php
require_once("Part.php");
class Doctrine_Query_Groupby extends Doctrine_Query_Part {
/**
* DQL GROUP BY PARSER
* parses the group by part of the query string
* @param string $str
* @return void
*/
final public function parse($str) {
$r = array();
foreach(explode(",", $str) as $reference) {
$reference = trim($reference);
$e = explode(".",$reference);
$field = array_pop($e);
$ref = implode(".", $e);
$table = $this->query->load($ref);
$component = $table->getComponentName();
$r[] = $this->query->getTableAlias($ref).".".$field;
}
return implode(", ", $r);
}
public function __toString() {
return ( ! empty($this->parts))?implode(", ", $this->parts):'';
}
}