lithium\data\Source::_init PHP Method

_init() protected method

protected _init ( )
    protected function _init()
    {
        parent::_init();
        if ($this->_config['autoConnect']) {
            $this->connect();
        }
    }

Usage Example

コード例 #1
0
ファイル: Http.php プロジェクト: WarToaster/HangOn
 protected function _init()
 {
     $config = $this->_config;
     unset($config['type']);
     $this->connection = $this->_instance('service', $config);
     parent::_init();
 }
All Usage Examples Of lithium\data\Source::_init