ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
multiple_glyphs.php
Go to the documentation of this file.
1<?php
2function multiple_glyphs() {
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
An exception for terminatinating execution or to throw for unit testing.
multiple_glyphs()
global $DIC