ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
modal.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
35 function 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
modal()
description: > This example shows a scenario in which the Close Button is used in an overlay as indi...
Definition: modal.php:35
global $DIC
Definition: shib_login.php:22