ILIAS  release_8 Revision v8.24
show_a_single_text.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
6
8{
9 global $DIC;
10 $factory = $DIC->ui()->factory();
11 $renderer = $DIC->ui()->renderer();
12 $page = $factory->modal()->lightboxTextPage('Some text content you have to agree on!', 'User Agreement');
13 $modal = $factory->modal()->lightbox($page);
14 $button = $factory->button()->standard('Show Text', '')
15 ->withOnClick($modal->getShowSignal());
16
17 return $renderer->render([$button, $modal]);
18}
global $DIC
Definition: feed.php:28
$factory
Definition: metadata.php:75