本文整理汇总了PHP中Illuminate\Pagination\Factory类的典型用法代码示例。如果您正苦于以下问题:PHP Factory类的具体用法?PHP Factory怎么用?PHP Factory使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Factory类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initialize
public function initialize(Grid $grid)
{
parent::initialize($grid);
$this->pagination_factory = $grid->getConfig()->getDataProvider()->getPaginationFactory();
$this->previous_page_name = $this->pagination_factory->getPageName();
$this->input_key = $grid->getInputProcessor()->getKey();
$this->setupPaginationForReading();
}
示例2: register
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->app->bindShared('paginator', function ($app) {
$paginator = new Factory($app['request'], $app['view'], $app['translator']);
$paginator->setViewName($app['config']['view.pagination']);
$app->refresh('request', $paginator, 'setRequest');
return $paginator;
});
}
示例3: getTranslator
/**
* Get the translator instance.
*
* @return \Symfony\Component\Translation\TranslatorInterface
* @static
*/
public static function getTranslator()
{
return \Illuminate\Pagination\Factory::getTranslator();
}
示例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);
}
示例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);
}
示例6: 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);
}
示例7: 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;
}
示例8: setBaseUrl
/**
* Set the base URL in use by the paginator.
*
* @param string $baseUrl
* @return void
*/
public function setBaseUrl($baseUrl)
{
$this->factory->setBaseUrl($baseUrl);
}