Commit 7c0aca3c authored by zYne's avatar zYne

--no commit message

--no commit message
parent 4634b7c1
......@@ -257,7 +257,7 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access
*/
public function bindQueryParts(array $queryParts)
{
$this->_table->bindQueryParts(array $queryParts);
$this->_table->bindQueryParts($queryParts);
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
*/
protected $_filters = array();
protected $_queryParts = array();
......@@ -1292,6 +1294,19 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
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)
{
$filter->setTable($this);
......@@ -1315,4 +1330,4 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
{
return Doctrine_Lib::getTableAsString($this);
}
}
\ No newline at end of file
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment