ILIAS  trunk Revision v12.0_alpha-1227-g7ff6d300864
bold.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
29function bold()
30{
31 global $DIC;
32
33 $factory = $DIC->ui()->factory();
34 $renderer = $DIC->ui()->renderer();
35
36 $glyph = $factory->symbol()->glyph()->bold();
37
38 // showcase the various states of this Glyph
39 $list = $factory->listing()->descriptive([
40 "Standard" => $glyph,
41 "Highlighted" => $glyph->withHighlight(),
42 ]);
43
44 return $renderer->render($list);
45}
$renderer
global $DIC
Definition: shib_login.php:26