Commit 7fc8eebf authored by zYne's avatar zYne

--no commit message

--no commit message
parent ad42d14e
......@@ -162,6 +162,10 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
* @var Doctrine_Relation_Parser $_parser relation parser object
*/
protected $_parser;
/**
* @var Doctrine_AuditLog $_auditLog
*/
protected $_auditLog;
/**
* the constructor
* @throws Doctrine_Connection_Exception if there are no opened connections
......@@ -1243,6 +1247,14 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
public function isTree() {
return ( ! is_null($this->options['treeImpl'])) ? true : false;
}
public function getAuditLog()
{
if ( ! isset($this->_auditLog)) {
$this->_auditLog = new Doctrine_AuditLog($this);
}
return $this->_auditLog;
}
/**
* returns a string representation of this object
*
......
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