3 declare(strict_types=1);
12 $f = $DIC->ui()->factory();
13 $renderer = $DIC->ui()->renderer();
19 'default_option' =>
'Default Ordering',
20 'latest' =>
'Most Recent Ordering',
21 'oldest' =>
'Oldest Ordering' 25 $select_option =
'default_option';
31 $modal =
$f->modal()->lightbox(
$f->modal()->lightboxTextPage(
'Note: This is just used to show case, how 32 this control can be used,to change an other components content.',
"Sortation has changed: " . $options[$select_option]));
33 $s =
$f->viewControl()->sortation($options)
34 ->withTargetURL($DIC->http()->request()->getRequestTarget(),
'sortation')
35 ->withLabel($options[$select_option])
36 ->withOnSort($modal->getShowSignal());
39 return $renderer->render([$s,$modal]);
Refinery Factory $refinery