ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
collapse.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
43 function collapse()
44 {
45  global $DIC;
46  $f = $DIC->ui()->factory();
47  $renderer = $DIC->ui()->renderer();
48 
49  $glyph = $f->symbol()->glyph()->collapse("#");
50 
51  //Showcase the various states of this Glyph
52  $list = $f->listing()->descriptive([
53  "Active" => $glyph,
54  "Inactive" => $glyph->withUnavailableAction(),
55  "Highlighted" => $glyph->withHighlight()
56  ]);
57 
58  return $renderer->render($list);
59 }
$renderer
collapse()
description: > Example for rendering a collapse glyph.
Definition: collapse.php:43
global $DIC
Definition: shib_login.php:22