3 declare(strict_types=1);
11 $f = $DIC->ui()->factory();
12 $renderer = $DIC->ui()->renderer();
17 $target = $DIC->http()->request()->getRequestTarget();
25 $back =
$f->button()->standard(
"Back",
"$target&$param=" . ($active - 1));
26 $next =
$f->button()->standard(
"Next" .
" " . ($active - 1),
"$target&$param=" . ($active + 1));
27 $middle =
$f->button()->standard(
"Go to Engaged Section (Current Section: $active)",
"$target&$param=0");
31 $middle = $middle->withLabel(
"Engaged Section")->withEngagedState(
true);
33 $view_control_section =
$f->viewControl()->section($back, $middle, $next);
34 $html = $renderer->render($view_control_section);
Refinery Factory $refinery