__construct() public method

架构函数
public __construct ( )
コード例 #1
0
ファイル: WidgetTagLib.php プロジェクト: hofmeister/Pimple
 public function __construct()
 {
     parent::__construct(false);
 }
コード例 #2
0
 /**
 +----------------------------------------------------------
 * 架构函数
 * 
 +----------------------------------------------------------
 * @access public 
 +----------------------------------------------------------
 * @param object $template  当前模板对象
 +----------------------------------------------------------
 */
 function __construct(&$template)
 {
     $this->tpl = $template;
     parent::__construct('ajax');
 }
コード例 #3
0
ファイル: CoreTagLib.php プロジェクト: hofmeister/Pimple
 public function __construct()
 {
     parent::__construct(true);
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct(false, true);
     self::$JS_WRAPPER_TAG = $this->uid();
 }
コード例 #5
0
 /**
 +----------------------------------------------------------
 * 架构函数
 * 
 +----------------------------------------------------------
 * @access public 
 +----------------------------------------------------------
 * @param object $template  当前模板对象
 +----------------------------------------------------------
 */
 public function __construct(&$template)
 {
     $this->tpl = $template;
     parent::__construct('html');
 }
コード例 #6
0
ファイル: ValueTagLib.php プロジェクト: hofmeister/Pimple
 public function __construct($preprocess = false)
 {
     parent::__construct($preprocess);
 }