1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/Query/Groupby.php
2006-12-29 14:40:47 +00:00

33 lines
884 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):'';
}
}