Zend_Db_Table_Abstract::init PHP Method

init() public method

Called from {@link __construct()} as final step of object instantiation.
public init ( ) : void
return void
    public function init()
    {
    }

Usage Example

Exemplo n.º 1
0
 function init()
 {
     parent::init();
     // NB! если свойство должно быть не в data, то прописывать его индивидуально!
     $this->_data = array('ItemCountPerPage' => 10, 'isPaginator' => true, 'isReturnPaginator' => false, 'generalWhere' => '', 'conditionWhere' => false, 'isStoredRows' => false);
     if ($this->_alias === null) {
         $this->imgs['folder'] = $this->_name;
     } else {
         $this->imgs['folder'] = $this->_alias;
     }
     #$conf = Zend_Registry::get('conf');
     #d($conf->logger->sql);
 }
All Usage Examples Of Zend_Db_Table_Abstract::init