arabcoders/pagination

This package is abandoned and no longer maintained. The author suggests using the pagerfanta/pagerfanta package instead.

Pagination

v1.0.1 2016-07-02 01:23 UTC

This package is auto-updated.

Last update: 2022-02-01 12:59:33 UTC


README

Pagination..

Install

Via Composer

$ composer require arabcoders/pagination

Usage Example.

<?php

require __DIR__ . '/../../autoload.php';

$renderer = new \arabcoders\pagination\Renderer\HTML();

$pagination = ( new \arabcoders\pagination\Pagination( $renderer ) )->setItems( 50 ,1 ,10 );

echo $pagination->render();