You are viewing the documentation for the 5.x branch of the PagerfantaBundle package which has not yet been released. Be aware that the API for this version may change before release.
Generating Paginated Routes
When rendering a Pagerfanta view, a route generator callable is required to generate the URLs for each item in the pagination list. The route generator can be customized for use within your application if you need to adjust the routing logic.
The route generators are defined by two interfaces, with their default implementations noted below:
Pagerfanta\RouteGenerator\RouteGeneratorInterface- The class type that is used to generate routesBabDev\PagerfantaBundle\RouteGenerator\RouterAwareRouteGeneratoris used by default, which uses the Symfony Routing component to generate routes
Pagerfanta\RouteGenerator\RouteGeneratorFactoryInterface- A factory service that is used to generate aRouteGeneratorInterfaceat runtimeBabDev\PagerfantaBundle\RouteGenerator\RequestAwareRouteGeneratorFactoryis used by default, which uses theSymfony\Component\HttpFoundation\Requestobject to attempt to set the default route name and route parameters, this creates aRouterAwareRouteGenerator
The Twig integration uses a RouteGeneratorFactoryInterface instance to create the route generator used when rendering a Pagerfanta view.
The pagerfanta.route_generator_factory service is available for use in your application if you need to create a route generator. You may use a compiler pass to change this service to any class meeting the interface requirements.
RouterAwareRouteGenerator Options
The following options may be passed through a route generator factory when using the BabDev\PagerfantaBundle\RouteGenerator\RouterAwareRouteGenerator in order to customize the generated URLs:
routeName- Required option (generated by theRequestAwareRouteGeneratorFactoryif not given), the name of the route to use for the paginated URLspageParameter- Defaults to "[page]", specifies the name of the routing parameter to use for the page, note that the page parameter MUST be wrapped in brackets (i.e.[other_page]) for the route generator to correctly functionomitFirstPage- Defaults tofalse, a boolean value indicating whether the first page should omit the pagination parameter (if true,?page=1will not be part of the paginated URL for page 1 of your list)routeParams- Defaults to an empty array, an array of additional parameters to pass to the router for generating the URLreferenceType- Defaults toSymfony\Component\Routing\Generator\UrlGeneratorInterface::ABSOLUTE_PATH, allows specifying the$referenceTypeparameter when callingSymfony\Component\Routing\Generator\UrlGeneratorInterface::generate()