This commit is contained in:
parent
a5f755f4ea
commit
b6924e0f0d
1 changed files with 19 additions and 1 deletions
|
@ -36,7 +36,17 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access
|
|||
* @param Doctrine_Table $_table reference to associated Doctrine_Table instance
|
||||
*/
|
||||
protected $_table;
|
||||
|
||||
|
||||
public function setTableDefinition()
|
||||
{
|
||||
|
||||
}
|
||||
public function setUp()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* getTable
|
||||
* returns the associated table object
|
||||
|
@ -284,6 +294,14 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function loadPlugin(Doctrine_Plugin $plugin)
|
||||
{
|
||||
$plugin->initialize($this->_table);
|
||||
|
||||
$this->_table->addPlugin($plugin, get_class($plugin));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* actAs
|
||||
* loads the given plugin
|
||||
|
|
Loading…
Add table
Reference in a new issue