19 declare(strict_types=1);
39 $factory = $DIC->ui()->factory();
41 $url = $DIC->http()->request()->getRequestTarget();
45 $parameter_name =
'page3';
51 $pagination = $factory->viewControl()->pagination()
52 ->withTargetURL(
$url, $parameter_name)
53 ->withTotalEntries(102)
56 ->withCurrentPage($current_page);
58 $custom_pagination = $pagination
59 ->withDropdownLabel(
'current page is %1$d (of %2$d pages in total)');
61 list($range_offset, $range_length) = $pagination->getRange()->unpack();
62 $result =
"Show $range_length entries starting at $range_offset";
64 return $renderer->render([$pagination, $custom_pagination])