9 $f = $DIC->ui()->factory();
10 $renderer = $DIC->ui()->renderer();
13 $image_in_modal =
$f->image()->standard(
14 "src/UI/examples/Image/mountains.jpg",
17 $page =
$f->modal()->lightboxImagePage($image_in_modal,
"Nice view");
18 $modal =
$f->modal()->lightbox($page);
20 $image =
$f->image()->standard(
21 "src/UI/examples/Image/HeaderIconLarge.svg",
23 )->withAction($modal->getShowSignal());
25 $html = $renderer->render([$image, $modal]);
with_signal_action()
Example for rendering an Image with a signal as action.