本文整理匯總了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);
}
示例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);
}
示例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);
}
示例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);
}