ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
modal.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
35function modal()
36{
37 global $DIC;
38 $factory = $DIC->ui()->factory();
39 $renderer = $DIC->ui()->renderer();
40
41 $modal = $factory->modal()->roundtrip(
42 'Close Button Demo',
43 $factory->legacy()->content('See the Close Button in the top right corner.')
44 );
45 $button1 = $factory->button()->standard('Show Close Button Demo', '#')
46 ->withOnClick($modal->getShowSignal());
47
48 return $renderer->render([$button1, $modal]);
49}
$renderer
global $DIC
Definition: shib_login.php:26