ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
std_outlined_icons.php
Go to the documentation of this file.
1<?php
3{
4 global $DIC;
5 $f = $DIC->ui()->factory();
6 $renderer = $DIC->ui()->renderer();
7
8 $i = $f->icon()->standard('NONE', 'DummyIcon');
9 $default_icons = $i->getAllStandardHandles();
10 $buffer = array();
11
12 foreach ($default_icons as $icon) {
13 $i = $f->icon()->standard($icon, $icon, 'medium')->withIsOutlined(true);
14 $buffer[] = $renderer->render($i)
15 . ' '
16 . $icon;
17 }
18
19 return implode('<br><br>', $buffer);
20}
An exception for terminatinating execution or to throw for unit testing.
$i
Definition: disco.tpl.php:19
global $DIC
Definition: saml.php:7
std_outlined_icons()