Beispiel #1
0
 protected function getFontSizeName($p)
 {
     return getFontsizeName($GLOBALS['sys_user_font_size']);
 }
Beispiel #2
0
function util_get_css_theme()
{
    $path = $GLOBALS['sys_user_theme'] . getFontsizeName($GLOBALS['sys_user_font_size']) . ".css";
    if ($GLOBALS['sys_is_theme_custom']) {
        $path = '/custom/' . $GLOBALS['sys_user_theme'] . '/css/' . $path;
    } else {
        $path = '/themes/' . $GLOBALS['sys_user_theme'] . '/css/' . $path;
    }
    return $path;
}