This commit is contained in:
parent
fd4cbda55d
commit
4634b7c194
1 changed files with 14 additions and 1 deletions
|
@ -248,6 +248,19 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access
|
||||||
{
|
{
|
||||||
$this->actAs($template, $options);
|
$this->actAs($template, $options);
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* 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->_table->bindQueryParts(array $queryParts);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* actAs
|
* actAs
|
||||||
* loads a given plugin
|
* loads a given plugin
|
||||||
|
@ -305,4 +318,4 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access
|
||||||
}
|
}
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue