當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Pager::noPage方法代碼示例

本文整理匯總了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);
 }
開發者ID:andreaspada,項目名稱:LotusCMS-Content-Management-System,代碼行數:30,代碼來源:cacher.php


注:本文中的Pager::noPage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。