当前位置: 首页>>代码示例>>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;未经允许,请勿转载。