ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
modal.php
Go to the documentation of this file.
1 <?php
7 function modal()
8 {
9  global $DIC;
10  $factory = $DIC->ui()->factory();
11  $renderer = $DIC->ui()->renderer();
12 
13  $modal = $factory->modal()->roundtrip(
14  'Close Button Demo',
15  $factory->legacy('See the Close Button in the top right corner.')
16  );
17  $button1 = $factory->button()->standard('Show Close Button Demo', '#')
18  ->withOnClick($modal->getShowSignal());
19 
20  return $renderer->render([$button1, $modal]);
21 }
$DIC
Definition: xapitoken.php:46
$factory
Definition: metadata.php:58