ILIAS  release_8 Revision v8.24
multiple_glyphs.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
6
8{
9 global $DIC;
10 $f = $DIC->ui()->factory();
11 $renderer = $DIC->ui()->renderer();
12
13 $note = $f->symbol()->glyph()->note("#")
14 ->withCounter($f->counter()->novelty(100))
15 ->withCounter($f->counter()->status(8));
16
17 $tag = $f->symbol()->glyph()->tag("#")
18 ->withCounter($f->counter()->novelty(1))
19 ->withCounter($f->counter()->status(800));
20
21 $comment = $f->symbol()->glyph()->comment("#")
22 ->withCounter($f->counter()->novelty(1))
23 ->withCounter($f->counter()->status(8));
24
25 return $renderer->render($note) . $renderer->render($tag) . $renderer->render($comment);
26}
$comment
Definition: buildRTE.php:72
global $DIC
Definition: feed.php:28