An open API service indexing awesome lists of open source software.

https://github.com/euskadi31/paginatorserviceprovider

Paginator service provider for Silex
https://github.com/euskadi31/paginatorserviceprovider

Last synced: 2 months ago
JSON representation

Paginator service provider for Silex

Awesome Lists containing this project

README

        

PaginatorServiceProvider
========================

Paginator service provider for Silex

Example
-------

```php
register(new Silex\Provider\UrlGeneratorServiceProvider());
$app->register(new Silex\Provider\TwigServiceProvider(), array(
'twig.path' => __DIR__,
'twig.options' => array(
'auto_reload' => true,
'cache' => __DIR__ . '/cache'
)
));
$app->register(new Paginator\Provider\PaginatorServiceProvider());

$app->get('/blog/{page}', function($page) use ($app) {

$count = 150; // number of items

$paginator = new Paginator\Paginator($count, 20, $page); //total items, items per page, current page

return $app['twig']->render('test.html.twig', array(
'paginator' => $paginator
));
})->assert('page', '\d+');

$app->run();
```

twig: test.html.twig
```html
{{ paginator(paginator) }}
```

Install
-------

Using composer installer and autoloader is probably the easiest way to install Paginator and get it running.
What you need is just a composer.json file in the root directory of your project:
```json
{
"require": {
"euskadi31/paginator-service-provider": "dev-master"
}
}
```