PagerBundle icon indicating copy to clipboard operation
PagerBundle copied to clipboard

Add paginate_with_limit helper/Twig function

Open makerlabs opened this issue 14 years ago • 0 comments

Twig usage example:

{{ paginate_with_limit(pager, 'route_name', [10, 20, 50, 100]) }}

PHP usage example:

<?php echo $view['pager']->paginate_with_limit($pager, 'route_name', array(10, 20, 50, 100)) ?>

This will create the default pagination with a drop down list options: 10, 20, 50, 100.

makerlabs avatar Sep 13 '11 12:09 makerlabs