ILIAS  release_7 Revision v7.30-3-g800a261c036
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 }
global $DIC
Definition: goto.php:24
$factory
Definition: metadata.php:58