Go to the source code of this file.
◆ std_outlined_icons()
Definition at line 2 of file std_outlined_icons.php.
3{
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}
References $DIC, $f, and $i.