1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 19:44:09 +02:00

AdminUI: Menu icon added.

This commit is contained in:
Cameron
2016-11-01 16:42:47 -07:00
parent c911ded19b
commit a3312a24a6
6 changed files with 49 additions and 12 deletions

View File

@@ -3497,8 +3497,14 @@ class e_parser
if(substr($text,0,2) == 'e-') // e107 admin icon.
{
$size = (substr($text,-3) == '-32') ? 'S32' : 'S16';
return "<i class='".$size." ".$text."'></i>";
$size = (substr($text,-3) == '-32') ? 'S32' : 'S16';
if(substr($text,-3) == '-24')
{
$size = 'S24';
}
return "<i class='".$size." ".$text."'></i>";
}
// Get Glyph names.