19declare(strict_types=1);
40 $factory =
$DIC->ui()->factory();
42 $page1 = $factory->modal()->lightboxTextPage(
'Some text content you have to agree on!',
'User Agreement');
43 $page2 = $factory->modal()->lightboxTextPage(
44 'Another text content you have to agree on!',
45 'Data Privacy Statement'
47 $modal = $factory->modal()->lightbox([$page1, $page2]);
48 $button = $factory->button()->standard(
'Show Texts',
'')
49 ->withOnClick($modal->getShowSignal());
51 return $renderer->render([$button, $modal]);