Example #1
0
 /**
  * 
  * Modifies $this->_config after it has been built.
  * 
  * @return void
  * 
  */
 protected function _postConfig()
 {
     parent::_postConfig();
     // make sure we have process values
     if (empty($this->_config['process'])) {
         $this->_config['process'] = $this->locale('PROCESS_LOGIN');
     }
 }
Example #2
0
 /**
  * 
  * Set up the dependency to the Facebook object.
  * 
  * @return void
  * 
  */
 protected function _postConstruct()
 {
     parent::_postConstruct();
     $this->_facebook = Solar::dependency('Facebook', $this->_config['facebook']);
 }
Example #3
0
 /**
  * 
  * Post-construction tasks to complete object construction.
  * 
  * @return void
  * 
  */
 protected function _postConstruct()
 {
     parent::_postConstruct();
     if ($this->_config['cache']) {
         $this->_cache = Solar::dependency('Solar_Cache', $this->_config['cache']);
     }
 }