arabcoders/pagination

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

Pagination

Installs: 49

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/arabcoders/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();