Go to the source code of this file.
◆ async()
Definition at line 3 of file async.php.
References $_GET, $DIC, and Vendor\Package\$f.
7 $f = $DIC->ui()->factory();
8 $renderer = $DIC->ui()->renderer();
12 'default_option' =>
'Default Ordering',
13 'latest' =>
'Most Recent Ordering',
14 'oldest' =>
'Oldest Ordering' 18 $select_option =
'default_option';
19 if (
$_GET[
'sortation']) {
20 $select_option =
$_GET[
'sortation'];
24 $modal =
$f->modal()->lightbox(
$f->modal()->lightboxTextPage(
'Note: This is just used to show case, how 25 this control can be used,to change an other components content.',
"Sortation has changed: " . $options[
$_GET[
'sortation']]));
26 $s =
$f->viewControl()->sortation($options)
27 ->withTargetURL($DIC->http()->request()->getRequestTarget(),
'sortation')
28 ->withLabel($options[$select_option])
29 ->withOnSort($modal->getShowSignal());
32 return $renderer->render([$s,$modal]);