Go to the source code of this file.
◆ many_pages_dropdown()
Definition at line 3 of file many_pages_dropdown.php.
4{
7 $renderer =
$DIC->ui()->renderer();
8 $url =
$DIC->http()->request()->getRequestTarget();
9
10 $parameter_name = 'page2';
11 $current_page = (int) @
$_GET[$parameter_name];
12
13 $pagination =
$factory->viewControl()->pagination()
14 ->withTargetURL(
$url, $parameter_name)
15 ->withTotalEntries(102)
16 ->withPageSize(10)
17 ->withDropdownAt(5)
18 ->withCurrentPage($current_page);
19
20 $start = $pagination->getOffset();
21 $stop =
$start + $pagination->getPageLength();
22 $result =
"entries $start to $stop";
23 return $renderer->render($pagination)
24 . '<hr>'
26}
References $_GET, $DIC, $factory, $result, $start, and $url.