當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。