__construct() public method

public __construct ( )
Example #1
0
 public function __construct($name, $display_name, $path)
 {
     parent::__construct($name, $display_name, $path);
     $this->_smartyPath = PATH_SMARTY_TPL . '/web' . $path;
 }
Example #2
0
 function __construct()
 {
     // Debug - Classname ausgeben?!
     $this->debugInitOnLoad('Class', __CLASS__);
     parent::__construct();
 }
Example #3
0
 public function __construct($name, $display_name, $path)
 {
     parent::__construct($name, $display_name, $path);
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->baseurl = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https://' . Config\HTTPS_DOMAIN : 'http://' . Config\SITE_HOST) . '/';
 }