/**
  * The object initialization method.
  *
  * @access public
  * @param  void  
  * @return void  
  */
 public function init()
 {
     $this->_objParts = $this->newObject('dbdecisiontableaction', 'decisiontable');
     $this->_objChild = $this->newObject('dbactionrule', 'decisiontable');
     $this->_objCreated = $this->newObject('rule', 'decisiontable');
     $this->_dbFK = 'actionid';
     parent::init('tbl_decisiontable_action');
 }
Beispiel #2
0
 /**
  * The object initialisation method.
  *
  * @access public 
  * @author Jonathan Abrahams
  * @return nothing
  */
 function init()
 {
     $this->_objParts = $this->newObject('dbdecisiontablerule', 'decisiontable');
     $this->_objChild = $this->newObject('dbrulecondition', 'decisiontable');
     $this->_objActionRule = $this->newObject('dbactionrule', 'decisiontable');
     $this->_objCreated = $this->newObject('condition', 'decisiontable');
     $this->_dbFK = 'conditionid';
     parent::init('tbl_decisiontable_rule');
 }