Retrieving Views
You can access the Pagerfanta views through the pagerfanta.view_factory
service, which is a Pagerfanta\View\ViewFactoryInterface
instance. This is useful if your application does not use Twig but you still want to use Pagerfanta views for rendering pagination lists.
<?php
namespace App\Service;
use Pagerfanta\PagerfantaInterface;
use Pagerfanta\RouteGenerator\RouteGeneratorFactoryInterface;
use Pagerfanta\View\ViewFactoryInterface;
final class PagerfantaService
{
public function __construct(
private readonly ViewFactoryInterface $viewFactory,
private readonly RouteGeneratorFactoryInterface $routeGeneratorFactory,
) {
}
public function render(PagerfantaInterface $pagerfanta, string $view, array $options = []): string
{
return $this->viewFactory->get($view)->render($pagerfanta, $this->routeGeneratorFactory->create($options), $options);
}
}