__construct() public méthode

架构函数
public __construct ( )
Exemple #1
0
 public function __construct()
 {
     parent::__construct(false);
 }
 /**
 +----------------------------------------------------------
 * 架构函数
 * 
 +----------------------------------------------------------
 * @access public 
 +----------------------------------------------------------
 * @param object $template  当前模板对象
 +----------------------------------------------------------
 */
 function __construct(&$template)
 {
     $this->tpl = $template;
     parent::__construct('ajax');
 }
Exemple #3
0
 public function __construct()
 {
     parent::__construct(true);
 }
 public function __construct()
 {
     parent::__construct(false, true);
     self::$JS_WRAPPER_TAG = $this->uid();
 }
 /**
 +----------------------------------------------------------
 * 架构函数
 * 
 +----------------------------------------------------------
 * @access public 
 +----------------------------------------------------------
 * @param object $template  当前模板对象
 +----------------------------------------------------------
 */
 public function __construct(&$template)
 {
     $this->tpl = $template;
     parent::__construct('html');
 }
Exemple #6
0
 public function __construct($preprocess = false)
 {
     parent::__construct($preprocess);
 }