1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Query/Where.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2006-06-30 03:04:39 +04:00
<?php
require_once("Condition.php");
class Doctrine_Query_Where extends Doctrine_Query_Condition {
/**
* load
2006-06-30 03:04:39 +04:00
* returns the parsed query part
*
* @param string $where
* @return string
*/
final public function load($where) {
2006-06-30 03:04:39 +04:00
$e = explode(" ",$where);
$r = array_shift($e);
$a = explode(".",$r);
if(count($a) > 1) {
$field = array_pop($a);
$count = count($e);
$slice = array_slice($e, 0, ($count - 1));
$operator = implode(' ', $slice);
$slice = array_slice($e, -1, 1);
$value = implode('', $slice);
2006-06-30 03:04:39 +04:00
$reference = implode(".",$a);
$count = count($a);
2006-06-30 03:04:39 +04:00
$table = $this->query->load($reference, false);
switch($operator) {
case '=':
$alias = $this->query->getTableAlias($reference);
$table = $this->query->getTable($alias);
$enumIndex = $table->enumIndex($field, trim($value,"'"));
if($enumIndex !== false)
$value = $enumIndex;
$where = $alias.'.'.$field.' '.$operator.' '.$value;
break;
default:
$where = $this->query->getTableAlias($reference).'.'.$field.' '.$operator.' '.$value;
}
2006-06-30 03:04:39 +04:00
}
return $where;
}
public function __toString() {
return ( ! empty($this->parts))?implode(" AND ", $this->parts):'';
}
}