ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
legacy.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 
7 function legacy()
8 {
9  global $DIC;
10  $f = $DIC->ui()->factory();
11  $renderer = $DIC->ui()->renderer();
12 
13  $icon = $f->symbol()->glyph()->comment();
14  $contents = $f->legacy("some <i>html</i>.");
15 
16  $slate = $f->maincontrols()->slate()->legacy('legacy_example', $icon, $contents);
17 
18  $triggerer = $f->button()->bulky(
19  $slate->getSymbol(),
20  $slate->getName(),
21  '#'
22  )
23  ->withOnClick($slate->getToggleSignal());
24 
25  return $renderer->render([
26  $triggerer,
27  $slate
28  ]);
29 }
global $DIC
Definition: feed.php:28