ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
multiple_glyphs.php File Reference

Go to the source code of this file.

Functions

 multiple_glyphs ()
 

Function Documentation

◆ multiple_glyphs()

multiple_glyphs ( )

Definition at line 2 of file multiple_glyphs.php.

2 {
3 global $DIC;
4 $f = $DIC->ui()->factory();
5 $renderer = $DIC->ui()->renderer();
6
7 $note = $f->glyph()->note("#")
8 ->withCounter($f->counter()->novelty(100))
9 ->withCounter($f->counter()->status(8));
10
11 $tag = $f->glyph()->tag("#")
12 ->withCounter($f->counter()->novelty(1))
13 ->withCounter($f->counter()->status(800));
14
15 $comment = $f->glyph()->comment("#")
16 ->withCounter($f->counter()->novelty(1))
17 ->withCounter($f->counter()->status(8));
18
19 return $renderer->render($note).$renderer->render($tag).$renderer->render($comment);
20}
$comment
Definition: buildRTE.php:83
global $DIC

References $comment, and $DIC.