当前位置: 首页>>代码示例>>PHP>>正文


PHP ViewFactory::factory方法代码示例

本文整理汇总了PHP中ViewFactory::factory方法的典型用法代码示例。如果您正苦于以下问题:PHP ViewFactory::factory方法的具体用法?PHP ViewFactory::factory怎么用?PHP ViewFactory::factory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ViewFactory的用法示例。


在下文中一共展示了ViewFactory::factory方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct()
 {
     $this->addonName = $this->getAddonName();
     $this->addonPath = APP_ADDON_PATH . $this->addonName . '/';
     $this->configFile = $this->addonPath . 'config.php';
     $this->view = ViewFactory::factory();
 }
开发者ID:suhanyujie,项目名称:spider,代码行数:7,代码来源:Addon.class.php

示例2: __construct

 /**
  * 构造函数
  */
 public function __construct()
 {
     Hook::listen('CONTROLLER_START', $this->options);
     //视图对象
     $this->view = ViewFactory::factory();
     //子类如果存在auto方法,自动运行
     if (method_exists($this, "__init")) {
         $this->__init();
     }
 }
开发者ID:www2511550,项目名称:ECSHOP,代码行数:13,代码来源:Controller.class.php

示例3: __construct

 public function __construct()
 {
     /**
      * 视图对象
      */
     $this->view = ViewFactory::factory();
     $this->setAddonConfig();
     if (method_exists($this, '__init')) {
         $this->__init();
     }
 }
开发者ID:suhanyujie,项目名称:spider,代码行数:11,代码来源:AddonController.class.php

示例4: __construct

 /**
  * 构造函数
  */
 public function __construct()
 {
     Hook::listen('CONTROLLER_START', $this->options);
     /**
      * 视图对象
      */
     $this->view = ViewFactory::factory();
     /**
      * 自动运行的魔术方法
      */
     if (method_exists($this, "__init")) {
         $this->__init();
     }
 }
开发者ID:hdbaiyu,项目名称:HDPHP,代码行数:17,代码来源:Controller.class.php

示例5: __construct

 /**
  * 构造函数
  */
 public function __construct()
 {
     Hook::listen('CONTROLLER_START', $this->options);
     $this->addonName = $this->getAddonName();
     $this->addonPath = APP_ADDON_PATH . $this->addonName . '/';
     $this->configFile = $this->addonPath . 'config.php';
     /**
      * 视图对象
      */
     $this->view = ViewFactory::factory();
     /**
      * 自动运行的魔术方法
      */
     if (method_exists($this, "__init")) {
         $this->__init();
     }
 }
开发者ID:suhanyujie,项目名称:spider,代码行数:20,代码来源:Controller.class.php

示例6: getViewObj

 private function getViewObj()
 {
     if (is_null($this->view)) {
         $this->view = ViewFactory::factory();
     }
 }
开发者ID:jyht,项目名称:v5,代码行数:6,代码来源:Boot.php

示例7: getViewObj

 /**
  * 获得视图对象
  * @access private
  * @return void
  */
 private function getViewObj()
 {
     if (is_null($this->view)) {
         //获得视图驱动含hd模板引擎与smarty引擎
         require_cache(HDPHP_DRIVER_PATH . 'View/ViewFactory.class.php');
         $this->view = ViewFactory::factory();
     }
 }
开发者ID:sxau-web-team,项目名称:wish-web,代码行数:13,代码来源:Control.class.php

示例8: getViewObj

 /**
  * 获得视图对象
  * @access private
  * @return void
  */
 private function getViewObj()
 {
     if (is_null($this->view)) {
         //获得视图驱动含hd模板引擎与smarty引擎
         $this->view = ViewFactory::factory();
     }
 }
开发者ID:jyht,项目名称:v5,代码行数:12,代码来源:Control.class.php


注:本文中的ViewFactory::factory方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。