当前位置: 首页>>代码示例>>PHP>>正文


PHP Factory::make方法代码示例

本文整理汇总了PHP中Illuminate\Pagination\Factory::make方法的典型用法代码示例。如果您正苦于以下问题:PHP Factory::make方法的具体用法?PHP Factory::make怎么用?PHP Factory::make使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Illuminate\Pagination\Factory的用法示例。


在下文中一共展示了Factory::make方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: index

 /**
  * @return \Illuminate\Pagination\Paginator
  */
 public function index()
 {
     $page = Input::has('page') ? Input::get('page') : PageableRepositoryInterface::FIRST_PAGE;
     $query = Input::has('query') ? Input::get('query') : '';
     $results = $this->filmService->paginate($page, $query);
     $transformedItems = $this->transformer->transformCollection($results->getItems());
     $results->setItems($transformedItems);
     return $this->paginator->make($results->getItems()->toArray(), $results->getTotal(), PageableRepositoryInterface::ITEMS_PER_PAGE);
 }
开发者ID:filmoteca,项目名称:filmoteca,代码行数:12,代码来源:FilmController.php

示例2: make

 /**
  * Get a new paginator instance.
  *
  * @param array $items
  * @param int $total
  * @param int|null $perPage
  * @return \Illuminate\Pagination\Paginator 
  * @static 
  */
 public static function make($items, $total, $perPage = null)
 {
     return \Illuminate\Pagination\Factory::make($items, $total, $perPage);
 }
开发者ID:nmkr,项目名称:basic-starter,代码行数:13,代码来源:_ide_helper.php

示例3: 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

示例4: 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::make方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。