__construct() публичный Метод

架构函数
public __construct ( )
Пример #1
0
 public function __construct()
 {
     parent::__construct(false);
 }
 /**
 +----------------------------------------------------------
 * 架构函数
 * 
 +----------------------------------------------------------
 * @access public 
 +----------------------------------------------------------
 * @param object $template  当前模板对象
 +----------------------------------------------------------
 */
 function __construct(&$template)
 {
     $this->tpl = $template;
     parent::__construct('ajax');
 }
Пример #3
0
 public function __construct()
 {
     parent::__construct(true);
 }
Пример #4
0
 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');
 }
Пример #6
0
 public function __construct($preprocess = false)
 {
     parent::__construct($preprocess);
 }