noroman / pagination
This package is abandoned and no longer maintained.
No replacement package was suggested.
pagination build
v0.0.2
2017-03-06 19:28 UTC
Requires
- php: >=5.0.0
This package is auto-updated.
Last update: 2020-01-28 19:59:14 UTC
README
require_once __DIR__ . '/vendor/autoload.php'; use Pagination\Templates\Hellip; use Pagination\Templates\Simple; $currentPage = 9; $total = 200; $url = '/news/articles/2017/'; /* template Hellip ------------------------------------------------------------------- */ /* 1 … 5 6 <7> 8 9 … 21 */ $pagen = new Hellip($url); $pagen->setTotal($total)->setCurrentPage($currentPage); // $pagen->setPageSize(10); // the default // $pagen->setMiddlePages(5); // the default echo $pagen->getHtml(); echo '<hr>'; /* template Simple ------------------------------------------------------------------- */ /* « 2 3 4 5 6 » */ $pagen = new Simple($url); $pagen->setTotal($total)->setCurrentPage($currentPage); // $pagen->setPageSize(10); // the default // $pagen->setMiddlePages(5); // the default echo $pagen->getHtml(); echo '<hr>';