3 declare(strict_types=1);
10 $factory = $DIC->ui()->factory();
11 $renderer = $DIC->ui()->renderer();
12 $page1 = $factory->modal()->lightboxTextPage(
'Some text content you have to agree on!',
'User Agreement');
13 $page2 = $factory->modal()->lightboxTextPage(
14 'Another text content you have to agree on!',
15 'Data Privacy Statement' 17 $modal = $factory->modal()->lightbox([$page1, $page2]);
18 $button = $factory->button()->standard(
'Show Texts',
'')
19 ->withOnClick($modal->getShowSignal());
21 return $renderer->render([$button, $modal]);