samyoul/php-pagination

There is no license information available for the latest version (dev-master) of this package.

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

dev-master 2017-09-05 21:41 UTC

This package is not auto-updated.

Last update: 2024-04-11 05:30:57 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();