2017 © Pedro Peláez
 

library pagination

pagination build

image

noroman/pagination

pagination build

  • Monday, March 6, 2017
  • by noRoman
  • Repository
  • 0 Watchers
  • 0 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

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 '


'; /* 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 '
';

The Versions

06/03 2017

dev-master

9999999-dev

pagination build

  Sources   Download

MIT

The Requires

  • php >=5.0.0

 

by NovikovRoman

06/03 2017

v0.0.2

0.0.2.0

pagination build

  Sources   Download

MIT

The Requires

  • php >=5.0.0

 

by NovikovRoman

05/03 2017

v0.0.1

0.0.1.0

pagination build

  Sources   Download

MIT

The Requires

  • php >=5.0.0

 

by NovikovRoman