ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
multiple_glyphs.php
Go to the documentation of this file.
1 <?php
2 function multiple_glyphs()
3 {
4  global $DIC;
5  $f = $DIC->ui()->factory();
6  $renderer = $DIC->ui()->renderer();
7 
8  $note = $f->symbol()->glyph()->note("#")
9  ->withCounter($f->counter()->novelty(100))
10  ->withCounter($f->counter()->status(8));
11 
12  $tag = $f->symbol()->glyph()->tag("#")
13  ->withCounter($f->counter()->novelty(1))
14  ->withCounter($f->counter()->status(800));
15 
16  $comment = $f->symbol()->glyph()->comment("#")
17  ->withCounter($f->counter()->novelty(1))
18  ->withCounter($f->counter()->status(8));
19 
20  return $renderer->render($note) . $renderer->render($tag) . $renderer->render($comment);
21 }
multiple_glyphs()
$comment
Definition: buildRTE.php:83
$DIC
Definition: xapitoken.php:46