nicovogelaar / paginator-module
Paginator module
dev-master
2015-01-23 13:14 UTC
Requires
- zendframework/zendframework: >=2.1.5
This package is not auto-updated.
Last update: 2025-04-26 18:01:08 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', ), // ... );