Download the PHP package wake/pager without Composer
On this page you can find all versions of the php package wake/pager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package pager
Short Description A lightweight PHP paginator.
License MIT
Homepage https://github.com/wake/pager
Informations about the package pager
Pager
A lightweight PHP paginator.
Installation
Add in your composer.json
with following require entry:
or using composer:
then run composer install
or composer update
.
Usage: Pager
Use Pager without any ORM.
$pager->show ($show)
Set amount of items per page, default to 15
.
$pager->total ($total)
Set total amount of items.
$pager->size ($size)
Set amount of page list per page, default to 10
.
$pager->page ($page)
Set current page, default to 1
.
$pager->dynamic ()
, $pager->fixed ()
List pages of page group dynamically or fixed, default is dynamic
.
$pager->url ($pattern)
Set url pattern or handler function, default is pattern (:num)
.
$pager->paging ()
Calculate and build page items, must be called after all options are set.
Usage: Pages
Container of page items.
$pages->top
First page of all pages, generally is 1.
$pages->end
Last page of all pages.
$pages->first
First page of page group.
$pages->last
Last page of page group.
$pages->total
Total amount of pages.
$pages->current
, $pages->page
Current page.
$pages->next
Next page.
$pages->prev
Previous page.
$pages->next*N
Next N
page.
$pages->prev*N
Previous N
page.
Usage: Page item
Page item.
$item
, $item->num
Number of the page, $item could be use as string directly.
$item->url ()
Url of the page.
Feedback
Please feel free to open an issue and let me know if there is any thoughts or questions :smiley:
License
Released under the MIT license