本文整理汇总了PHP中Pager::noPage方法的典型用法代码示例。如果您正苦于以下问题:PHP Pager::noPage方法的具体用法?PHP Pager::noPage怎么用?PHP Pager::noPage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pager
的用法示例。
在下文中一共展示了Pager::noPage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Cacher
/**
* This cachers the requested page.
*/
public function Cacher($page)
{
//Include the pager
include_once "core/view/Page.php";
//The Title of the website
$siteTitle = $this->openFile("data/config/site_title.dat");
//Create the pager
$pager = new Pager($siteTitle);
//Get the page content
$data = $this->getPageData($page);
//Set the page title
$pager->setContentTitle($data[0]);
//If Not on default template set the alternate one
if ($data[1] != "Default") {
$pager->setTemplate($data[1]);
}
//Set the page content
$pager->setContent($data[3]);
//Page not published. Cache 404 page.
if ($data[2] == "true") {
$pager->noPage();
}
//Generate the page
$toCache = $pager->softDisplayPage();
//Save to the cache
$this->saveFile("cache/" . $page . ".html", $toCache);
}