__construct() public method

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