本文整理匯總了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);
}