Go to the source code of this file.
◆ no_pages()
Definition at line 3 of file no_pages.php.
References $DIC, $factory, and $url.
7 $renderer = $DIC->ui()->renderer();
8 $url = $DIC->http()->request()->getRequestTarget();
10 $pagination =
$factory->viewControl()->pagination()
12 ->withTotalEntries(0);
14 $pagination_onepage = $pagination->withTotalEntries(9);
15 $pagination_limited = $pagination->withMaxPaginationButtons(5);
18 return $renderer->render($pagination)
20 . $renderer->render($pagination_onepage)
22 . $renderer->render($pagination_limited)