samyoul / php-pagination
Simple and lightweight PHP pagination class that works with Twitter Bootstrap perfectly. Manages pagination variables through instantiable class, and markup rendering through view-like include file. http://web.onassar.com/blog/2012/06/09/github-project-php-pagination
Requires
- php: ^5.3.3 || ^7.0
This package is not auto-updated.
Last update: 2024-11-07 08:24:49 UTC
README
PHP-Pagination contains an instantiable class, along with a view which renders the pagination markup.
The purpose of this library is to provide a simple API to render pagination markup, without having to worry about including common files and set too many settings. With this class, you simply pass in your parameters and make a call to the instance's *<parse> method.
Installation
composer require samyoul/php-pagination
Pagination Instantiation and Rendering
<?php // source inclusion require_once APP . '/vendors/PHP-Pagination/Pagination.class.php'; // determine page (based on <_GET>) $page = isset($_GET['page']) ? ((int) $_GET['page']) : 1; $totalItems = 200; // instantiate; set current page; set number of records $pagination = new Pagination($page, $totalItems); // grab rendered/parsed pagination markup $markup = $pagination->parse();