nicovogelaar/paginator-module

dev-master 2015-01-23 13:14 UTC

This package is not auto-updated.

Last update: 2024-09-28 15:06:12 UTC


README

Introduction

This paginator module is intended to easily implement pagination with sorting and filters in your application.

Currently the paginator only supports the Doctrine QueryBuilder.

Usage

Requirements

Installation

Install with composer

./composer.phar require nicovogelaar/paginator-module
#when asked for a version, type "*".

Enable module

Enable the module in your application.config.php file.

<?php
return array(
    'modules' => array(
        // ...
        'Nicovogelaar\Paginator',
    ),
    // ...
);