public function __construct()
 {
     parent::__construct();
     if (!isset($this->EE->TMPL)) {
         $this->init();
     }
 }
 public function __construct()
 {
     parent::__construct();
 }
Exemple #3
0
 /**
  * Construct
  *
  * Constructs the object and loads all the available drivers
  *
  * @param	array	Additional parameters used to instatiate the object
  * @return	void
  */
 public function __construct($params = array())
 {
     parent::__construct($params);
     $drivers = isset($params['drivers']) ? $params['drivers'] : $this->drivers;
     $this->load_drivers($drivers);
 }