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


PHP Factory::getCurrentPage方法代碼示例

本文整理匯總了PHP中Illuminate\Pagination\Factory::getCurrentPage方法的典型用法代碼示例。如果您正苦於以下問題:PHP Factory::getCurrentPage方法的具體用法?PHP Factory::getCurrentPage怎麽用?PHP Factory::getCurrentPage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Pagination\Factory的用法示例。


在下文中一共展示了Factory::getCurrentPage方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getCurrentPage

 /**
  * Get the number of the current page.
  *
  * @return int
  */
 public function getCurrentPage()
 {
     $page = (int) $this->currentPage ?: array_get($this->routeParameters, 'page');
     if ($page < 1 || filter_var($page, FILTER_VALIDATE_INT) === false) {
         return parent::getCurrentPage();
     }
     return $page;
 }
開發者ID:cesarcarvalho,項目名稱:pagination,代碼行數:13,代碼來源:Factory.php

示例2: calculateCurrentPage

 /**
  * Get the current page for the request.
  *
  * @param  int  $lastPage
  * @return int
  */
 protected function calculateCurrentPage($lastPage)
 {
     $page = $this->factory->getCurrentPage();
     // The page number will get validated and adjusted if it either less than one
     // or greater than the last page available based on the count of the given
     // items array. If it's greater than the last, we'll give back the last.
     if (is_numeric($page) && $page > $lastPage) {
         return $lastPage > 0 ? $lastPage : 1;
     }
     return $this->isValidPageNumber($page) ? (int) $page : 1;
 }
開發者ID:peintune,項目名稱:Ternado,代碼行數:17,代碼來源:Paginator.php

示例3: getCurrentPage

 /**
  * Get the number of the current page.
  *
  * @return int 
  * @static 
  */
 public static function getCurrentPage()
 {
     return \Illuminate\Pagination\Factory::getCurrentPage();
 }
開發者ID:nmkr,項目名稱:basic-starter,代碼行數:10,代碼來源:_ide_helper.php

示例4: ungroupedPaginate

 /**
  * Create a paginator for an un-grouped pagination statement.
  *
  * @param  \Illuminate\Pagination\Factory  $paginator
  * @param  int    $perPage
  * @param  array  $columns
  * @return \Illuminate\Pagination\Paginator
  */
 protected function ungroupedPaginate($paginator, $perPage, $columns)
 {
     $total = $this->getPaginationCount();
     // Once we have the total number of records to be paginated, we can grab the
     // current page and the result array. Then we are ready to create a brand
     // new Paginator instances for the results which will create the links.
     $page = $paginator->getCurrentPage($total);
     $results = $this->forPage($page, $perPage)->get($columns);
     return $paginator->make($results, $total, $perPage);
 }
開發者ID:astronautyan,項目名稱:O2OMobile_PHP,代碼行數:18,代碼來源:Builder.php

示例5: ungroupedPaginate

 /**
  * Get a paginator for an ungrouped statement.
  *
  * @param  \Illuminate\Pagination\Factory  $paginator
  * @param  int    $perPage
  * @param  array  $columns
  * @return \Illuminate\Pagination\Paginator
  */
 protected function ungroupedPaginate($paginator, $perPage, $columns)
 {
     $total = $this->query->getPaginationCount();
     // Once we have the paginator we need to set the limit and offset values for
     // the query so we can get the properly paginated items. Once we have an
     // array of items we can create the paginator instances for the items.
     $page = $paginator->getCurrentPage($total);
     $this->query->forPage($page, $perPage);
     return $paginator->make($this->get($columns)->all(), $total, $perPage);
 }
開發者ID:peintune,項目名稱:Ternado,代碼行數:18,代碼來源:Builder.php


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