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