This commit is contained in:
parent
4634b7c194
commit
7c0aca3cd2
@ -257,7 +257,7 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access
|
|||||||
*/
|
*/
|
||||||
public function bindQueryParts(array $queryParts)
|
public function bindQueryParts(array $queryParts)
|
||||||
{
|
{
|
||||||
$this->_table->bindQueryParts(array $queryParts);
|
$this->_table->bindQueryParts($queryParts);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
@ -159,6 +159,8 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
|||||||
* @var array $_filters an array containing all record filters attached to this table
|
* @var array $_filters an array containing all record filters attached to this table
|
||||||
*/
|
*/
|
||||||
protected $_filters = array();
|
protected $_filters = array();
|
||||||
|
|
||||||
|
protected $_queryParts = array();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1292,6 +1294,19 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
|||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* bindQueryParts
|
||||||
|
* binds query parts to given component
|
||||||
|
*
|
||||||
|
* @param array $queryParts an array of pre-bound query parts
|
||||||
|
* @return Doctrine_Record this object
|
||||||
|
*/
|
||||||
|
public function bindQueryParts(array $queryParts)
|
||||||
|
{
|
||||||
|
$this->_queryParts = $queryParts;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
public function unshiftFilter(Doctrine_Record_Filter $filter)
|
public function unshiftFilter(Doctrine_Record_Filter $filter)
|
||||||
{
|
{
|
||||||
$filter->setTable($this);
|
$filter->setTable($this);
|
||||||
@ -1315,4 +1330,4 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
|||||||
{
|
{
|
||||||
return Doctrine_Lib::getTableAsString($this);
|
return Doctrine_Lib::getTableAsString($this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user