本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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);
}
示例5: fetch
/**
* 获取输出页面内容
* 调用内置的模板引擎fetch方法,
* @access protected
* @param string $templateFile 指定要调用的模板文件
* 默认为空 由系统自动定位模板文件
* @return string
*/
protected function fetch($templateFile = '')
{
$this->initView();
return $this->view->fetch($templateFile);
}
示例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);
}
示例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);
}