3 declare(strict_types=1);
13 $f = $DIC->ui()->factory();
14 $renderer = $DIC->ui()->renderer();
16 $target = new \ILIAS\Data\URI(
"https://ilias.de");
18 $ico =
$f->symbol()->icon()
19 ->standard(
'someExample',
'Example')
20 ->withAbbreviation(
'E')
22 $link =
$f->link()->bulky($ico,
'Link to ilias.de with Icon', $target);
24 $glyph =
$f->symbol()->glyph()->briefcase();
25 $link2 =
$f->link()->bulky($glyph,
'Link to ilias.de with Glyph', $target);
27 return $renderer->render([
29 $f->divider()->horizontal(),