Zend_Db_Table_Abstract::_setup PHP Method

_setup() protected method

Calls other protected methods for individual tasks, to make it easier for a subclass to override part of the setup logic.
protected _setup ( ) : void
return void
    protected function _setup()
    {
        $this->_setupDatabaseAdapter();
        $this->_setupTableName();
    }

Usage Example

 /**
  * Calls other protected methods for individual setup tasks and requirement checks
  *
  * @return void
  */
 protected function _setup()
 {
     parent::_setup();
     $this->_setupPrimaryAssignment();
     $this->setLifetime($this->_lifetime);
     $this->_checkRequiredColumns();
 }
All Usage Examples Of Zend_Db_Table_Abstract::_setup