當前位置: 首頁>>代碼示例>>PHP>>正文


PHP view::fetch方法代碼示例

本文整理匯總了PHP中view::fetch方法的典型用法代碼示例。如果您正苦於以下問題:PHP view::fetch方法的具體用法?PHP view::fetch怎麽用?PHP view::fetch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在view的用法示例。


在下文中一共展示了view::fetch方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: fetch

 protected final function fetch($templateFile = CONTROLLER_NAME)
 {
     if (!is_file($templateFile)) {
         $templateFile = $this->addon_path . $templateFile . C('TMPL_TEMPLATE_SUFFIX');
         if (!is_file($templateFile)) {
             throw new \Exception("模板不存在:{$templateFile}");
         }
     }
     return $this->view->fetch($templateFile);
 }
開發者ID:zhendeguoke1008,項目名稱:OneShop,代碼行數:10,代碼來源:Addon.class.php

示例2: fetch

 protected final function fetch($templateFile = 'widget')
 {
     if (!is_file($templateFile)) {
         $config = $this->getConfig();
         $theme = $config['theme'];
         $depr = "/";
         $theme = empty($theme) ? "" : $theme . $depr;
         $templateFile = sp_add_template_file_suffix("./" . $this->tmpl_root . $templateFile);
         if (!file_exists_case($templateFile)) {
             throw new \Exception("模板不存在:{$templateFile}");
         }
     }
     return $this->view->fetch($templateFile);
 }
開發者ID:feng8605765,項目名稱:xmmusic,代碼行數:14,代碼來源:Plugin.class.php

示例3: fetch

 protected final function fetch($templateFile = 'widget')
 {
     if (!is_file($templateFile)) {
         $config = $this->getConfig();
         $theme = $config['theme'];
         $depr = "/";
         $theme = empty($theme) ? "" : $theme . $depr;
         $templateFile = "./" . $this->tmpl_root . $templateFile . C('TMPL_TEMPLATE_SUFFIX');
         if (!is_file($templateFile)) {
             throw new \Exception("模板不存在:{$templateFile}");
         }
     }
     return $this->view->fetch($templateFile);
 }
開發者ID:noikiy,項目名稱:cmfx,代碼行數:14,代碼來源:Plugin.class.php

示例4: fetch

 /**
  * 獲取輸出頁麵內容
  * 調用內置的模板引擎fetch方法,
  *
  * @access protected
  * @param string $templateFile
  *        	指定要調用的模板文件
  *        	默認為空 由係統自動定位模板文件
  * @param string $content
  *        	模板輸出內容
  * @param string $prefix
  *        	模板緩存前綴*
  * @return string
  */
 protected function fetch($templateFile = '', $content = '', $prefix = '')
 {
     return $this->view->fetch($templateFile, $content, $prefix);
 }
開發者ID:chenpusn,項目名稱:haozhixian,代碼行數:18,代碼來源:Controller.class.php

示例5: fetch

 /**
  *  獲取輸出頁麵內容
  * 調用內置的模板引擎fetch方法,
  * @access protected
  * @param string $templateFile 指定要調用的模板文件
  * 默認為空 由係統自動定位模板文件
  * @return string
  */
 protected function fetch($templateFile = '')
 {
     $this->initView();
     return $this->view->fetch($templateFile);
 }
開發者ID:ailingsen,項目名稱:pigcms,代碼行數:13,代碼來源:Action.class.php

示例6: fetch

 /**
  * 獲得視圖顯示內容 用於生成靜態或生成緩存文件
  * @param string $tplFile 模板文件
  * @param null $cacheTime 緩存時間
  * @param string $cachePath 緩存目錄
  * @param string $contentType 文件類型
  * @param string $charset 字符集
  * @param bool $show 是否顯示
  * @return mixed
  */
 protected function fetch($tplFile = null, $cacheTime = null, $cachePath = null, $contentType = "text/html")
 {
     return $this->view->fetch($tplFile, $cacheTime, $cachePath, $contentType);
 }
開發者ID:hdbaiyu,項目名稱:HDPHP,代碼行數:14,代碼來源:Controller.class.php

示例7: fetch

 /**
  * 獲得視圖顯示內容 用於生成靜態或生成緩存文件
  * @param string $tplFile 模板文件
  * @param null $cacheTime 緩存時間
  * @param string $cachePath 緩存目錄
  * @param string $contentType 文件類型
  * @param string $charset 字符集
  * @param bool $show 是否顯示
  * @return mixed
  */
 protected function fetch($tplFile = null, $cacheTime = null, $cachePath = null, $contentType = "text/html", $charset = "", $show = true)
 {
     return $this->view->fetch($tplFile, $cacheTime, $cachePath, $contentType, $charset);
 }
開發者ID:www2511550,項目名稱:ECSHOP,代碼行數:14,代碼來源:Controller.class.php


注:本文中的view::fetch方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。