static function init() { self::$theSmarty = new Smarty(); self::$theSmarty->template_dir = util_getRootPath() . 'templates'; self::$theSmarty->compile_dir = util_getRootPath() . 'templates_c'; self::$theSmarty->inheritance_merge_compiled_includes = false; // This allows variable names in {include} tags self::assign('wwwRoot', util_getWwwRoot()); self::assign('imgRoot', util_getImgRoot()); self::assign('sources', Model::factory('Source')->order_by_desc('isOfficial')->order_by_asc('displayOrder')->find_many()); self::assign('sUser', session_getUser()); self::assign('nick', session_getUserNick()); self::assign('currentYear', date("Y")); self::assign('isMobile', util_isMobile()); self::assign('suggestNoBanner', util_suggestNoBanner()); self::assign('cfg', Config::getAll()); self::assign('GLOBALS', $GLOBALS); self::$theSmarty->registerPlugin('function', 'getDebugInfo', array('SmartyWrap', 'getDebugInfo')); }
function smarty_init() { $smarty = new Smarty(); $smarty->template_dir = util_getRootPath() . 'templates'; $smarty->compile_dir = util_getRootPath() . 'templates_c'; $smarty->assign('wwwRoot', util_getWwwRoot()); $smarty->assign('cssRoot', util_getCssRoot()); $smarty->assign('imgRoot', util_getImgRoot()); $smarty->assign('sources', Model::factory('Source')->order_by_desc('isOfficial')->order_by_asc('displayOrder')->find_many()); $smarty->assign('sUser', session_getUser()); $smarty->assign('is_mirror', pref_isMirror()); $smarty->assign('nick', session_getUserNick()); $smarty->assign('contact_email', pref_getContactEmail()); $smarty->assign('hostedBy', pref_getHostedBy()); $smarty->assign('currentYear', date("Y")); $smarty->assign('bannerType', pref_getServerPreference('bannerType')); $smarty->assign('developmentMode', pref_getServerPreference('developmentMode')); $smarty->assign('isMobile', util_isMobile()); smarty_registerFunction($smarty, 'getDebugInfo', 'smarty_function_getDebugInfo'); $smarty->assign('GLOBALS', $GLOBALS); $GLOBALS['smarty_theSmarty'] = $smarty; }
static function init() { self::$theSmarty = new Smarty(); self::$theSmarty->template_dir = util_getRootPath() . 'templates'; self::$theSmarty->compile_dir = util_getRootPath() . 'templates_c'; self::assign('wwwRoot', util_getWwwRoot()); self::assign('imgRoot', util_getImgRoot()); self::assign('staticServer', Config::get('static.url')); self::assign('sources', Model::factory('Source')->order_by_desc('isOfficial')->order_by_asc('displayOrder')->find_many()); self::assign('sUser', session_getUser()); self::assign('is_mirror', Config::get('global.mirror')); self::assign('nick', session_getUserNick()); self::assign('contact_email', Config::get('global.contact')); self::assign('hostedBy', Config::get('global.hostedBy')); self::assign('currentYear', date("Y")); self::assign('bannerType', Config::get('banner.type')); self::assign('developmentMode', Config::get('global.developmentMode')); self::assign('isMobile', util_isMobile()); self::assign('suggestNoBanner', util_suggestNoBanner()); self::assign('acEnable', Config::get('search.acEnable')); self::assign('acMinChars', Config::get('search.acMinChars')); self::assign('GLOBALS', $GLOBALS); self::$theSmarty->registerPlugin('function', 'getDebugInfo', array('SmartyWrap', 'getDebugInfo')); }
function session_getSkin() { // Check for user preferences and anonymous preferences $user = session_getUser(); $skin = $user && $user->skin ? $user->skin : session_getCookieSetting('skin'); if ($skin && session_isValidSkin($skin)) { return $skin; } // Check if the user has a mobile device if (util_isMobile()) { return Config::get('global.mobileSkin'); } // Return the default skin return Config::get('global.desktopSkin'); }