ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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.

3{
4 global $DIC;
5 $f = $DIC->ui()->factory();
6 $renderer = $DIC->ui()->renderer();
7
8 $note = $f->glyph()->note("#")
9 ->withCounter($f->counter()->novelty(100))
10 ->withCounter($f->counter()->status(8));
11
12 $tag = $f->glyph()->tag("#")
13 ->withCounter($f->counter()->novelty(1))
14 ->withCounter($f->counter()->status(800));
15
16 $comment = $f->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}
$comment
Definition: buildRTE.php:83
if(function_exists( 'posix_getuid') &&posix_getuid()===0) if(!array_key_exists('t', $options)) $tag
Definition: cron.php:35
global $DIC
Definition: saml.php:7

References $comment, $DIC, and $tag.