本文整理汇总了PHP中BaseView::fetch方法的典型用法代码示例。如果您正苦于以下问题:PHP BaseView::fetch方法的具体用法?PHP BaseView::fetch怎么用?PHP BaseView::fetch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BaseView
的用法示例。
在下文中一共展示了BaseView::fetch方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fetch
/**
* @param string $tplFile
*/
protected function fetch($tplFile)
{
if (DAGGER_TEMPLATE_ENGINE === 'smarty') {
$tpl = new BaseViewSmarty();
} else {
$tpl = new BaseView();
}
$tpl->assign($this->view);
return trim($tpl->fetch($tplFile));
}
示例2: getPageStr
/**
* 构造翻页字符串
* @return string 返回翻页页码html代码
*/
public function getPageStr()
{
if (DAGGER_TEMPLATE_ENGINE === 'smarty') {
$tpl = new BaseViewSmarty();
} else {
$tpl = new BaseView();
}
$assign = array('totalPage' => $this->totalPage, 'pageSize' => $this->pageSize, 'prePage' => $this->prePage, 'nextPage' => $this->nextPage, 'firstPage' => $this->firstPage, 'lastPage' => $this->lastPage, 'totalNum' => $this->totalNum, 'pName' => $this->pName, 'page' => $this->page, 'paramStr' => $this->paramStr);
$format = isset($_REQUEST['format']) ? $_REQUEST['format'] : '';
switch ($format) {
case 'xml':
case 'json':
return !$this->totalPage ? array() : $assign;
break;
default:
foreach ($assign as $key => $val) {
$tpl->assign($key, $val);
}
$style = intval($this->style);
return !$this->totalPage ? '' : $tpl->fetch('page/style_' . $style . '.html');
}
}