3 declare(strict_types=1);
14 $f = $DIC->ui()->factory();
15 $renderer = $DIC->ui()->renderer();
18 $image_in_modal =
$f->image()->standard(
19 "src/UI/examples/Image/mountains.jpg",
22 $page =
$f->modal()->lightboxImagePage($image_in_modal,
"Nice view");
23 $modal =
$f->modal()->lightbox($page);
25 $image =
$f->image()->standard(
26 "src/UI/examples/Image/HeaderIconLarge.svg",
28 )->withAction($modal->getShowSignal());
30 $html = $renderer->render([$image, $modal]);
with_signal_action()
Example for rendering an Image with a signal as action.