skoziel / silex-pagination
Simple Pagination Service Provider for Silex 2.0
Installs: 4 429
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.6
- amstaffix/pagination: ~1.1
Requires (Dev)
- silex/silex: >=2.0
- twig/twig: ~1.8
This package is auto-updated.
Last update: 2025-03-12 20:07:38 UTC
README
This service provider is based on AmsTaFFix/silex-pagination, but now works on Silex 2.0.
Requirements
- silex/silex >= 2.0
- kilte/pagination >= 1.1
- twig/twig >= 1.8
- PHP >= 5.6
Registering
$app->register(new SKoziel\Silex\Pagination\PaginationServiceProvider(), array( 'pagination.per_page' => 30, //Number of items per page, default = 20 'pagination.neighbours' => 5 //Number of neighboring pages, default = 4 ));
Trait
use SKoziel\Silex\Pagination\PaginationTrait; $pagination = $app->pagination($total, $current, $perPage, $neighbours);
Usage
Building pagination
$pagination = $app['pagination'](100, 5); $pages = $pagination->build();
Creating pagination friendly twig
<ul> {% for number, position in pages %} {% if position == 'first' %} <li><a href="/{{ number }}">«</a></li> {% elseif position == 'less' or position == 'more' %} <li>...</li> {% elseif position == 'previous' or position == 'next' %} <li><a href="/{{ number }}">{{ number }}</a></li> {% elseif position == 'current' %} <li>{{ number }}</li> {% elseif position == 'last' %} <li><a href="/{{ number }}">»</a></li> {% endif %} {% endfor %} </ul>
Rendering twig with pagination
$app['twig']->render('pagination.twig', array('pages' => $pages, 'current' => $pagination->currentPage()));