handleQuickLanguageChange(); $this->handleQuickSkinChange(); $this->addSkinInterfaceMenuItem(); $this->addLanguageInterfaceMenuItem(); // include scripts (doing it here so the quick skin change works in elastic/larry) $this->includeAsset("assets/scripts/xskin.min.js"); // return if we're not running a Roundcube Plus skin (but add custom css so it applies to all skins) if (!$this->rcpSkin) { $this->includeCustomCss(); return; } if (!$this->elastic) { $this->disablePluginsConfig = $this->rcmail->config->get("disable_plugins_on_mobile", []); } // add hooks $this->add_hook("startup", [$this, "startup"]); $this->add_hook("config_get", [$this, $this->elastic ? "elasticGetConfig" : "larryGetConfig"]); $this->add_hook("render_page", [$this, $this->elastic ? "elasticRenderPage" : "larryRenderPage"]); if ($this->rcmail->task == "settings") { $this->add_hook('preferences_sections_list', [$this, 'preferencesSectionsList']); $this->add_hook("preferences_list", [$this, "preferencesList"]); $this->add_hook("preferences_save", [$this, "preferencesSave"]); } // include assets $this->includeAsset("assets/scripts/xskin.min.js"); $this->includeAsset("assets/styles/styles.css"); $this->includeSkinConfig(); if ($this->skinBase == "larry") { $this->larrySetSkin(); $this->addDisableMobileInterfaceMenuItem(); if ($this->rcmail->output->get_env("xskin_type") == "mobile") { $this->includeAsset("assets/scripts/hammer.min.js"); $this->includeAsset("assets/scripts/jquery.hammer.js"); $this->includeAsset("assets/scripts/larry_mobile.min.js"); $this->includeAsset("assets/styles/larry_mobile.css"); $this->includeAsset("../../skins/$this->skin/assets/styles/mobile.css"); } else { $this->includeAsset("assets/scripts/larry_desktop.min.js"); $this->includeAsset("assets/styles/larry_desktop.css"); $this->includeAsset("../../skins/$this->skin/assets/styles/desktop.css"); } } else { $this->includeAsset("../../skins/$this->skin/assets/styles/styles.css"); $this->includeAsset("../../skins/$this->skin/assets/scripts/scripts.min.js"); } // removed the cairo font (included with previous versions) because of line spacing issues - fix any old font settings if ($this->rcmail->config->get("xskin_font_family_$this->skin") == "cairo") { $this->rcmail->config->set("xskin_font_family_$this->skin", "noto-sans"); } // if remote assets are disabled, set the font to roboto (loaded from elastic) and don't load fonts from google if ($this->rcmail->config->get("disable_remote_skin_fonts")) { // set these to a value that doesn't exist in _options.scss so it won't set the font $this->rcmail->config->set("xskin_font_family", "inherited-local"); $this->rcmail->config->set("xskin_font_family_$this->skin", "inherited-local"); } else { $this->include_stylesheet("https://fonts.googleapis.com/css2?family=Roboto&display=block"); $this->include_stylesheet("https://fonts.googleapis.com/css2?family=Noto+Sans&display=block"); $this->include_stylesheet("https://fonts.googleapis.com/css2?family=Ubuntu&display=block"); $this->include_stylesheet("https://fonts.googleapis.com/css2?family=Montserrat+Alternates&display=block"); $this->include_stylesheet("https://fonts.googleapis.com/css2?family=Sarala&display=block"); $this->include_stylesheet("https://fonts.googleapis.com/css2?family=Quattrocento&display=block"); $this->include_stylesheet("https://fonts.googleapis.com/css2?family=Merienda&display=block"); } $this->ensureSkinLogo(); $this->setPreviewBranding(); $this->includeCustomCss(); } public function startup() { if ($this->elastic) { // add labels to env (for creating the mobile interface in js) $this->rcmail->output->add_label("login"); } else { // litecube is the only skin not using font icons in desktop; but it does use it on mobile if ($this->skin == "litecube" && $this->rcmail->output->get_env("xmobile")) { $this->rcmail->config->set("xlarry_font_icons", true); } // add larry-based classes to body $bodyClasses = ["x" . $this->rcmail->output->get_env("xskin_type")]; $this->rcmail->config->get("xlarry_font_icons") && ($bodyClasses[] = "xlarry-font-icons"); $this->rcmail->config->get("xlarry_square_ui") && ($bodyClasses[] = "xlarry-square-ui"); $this->rcmail->config->get("xlarry_light_ui") && ($bodyClasses[] = "xlarry-light-ui"); $this->rcmail->task == "logout" && ($bodyClasses[] = "login-page"); $this->addBodyClass(implode(" ", $bodyClasses)); // add labels to env (for creating the mobile interface in js) $this->rcmail->output->add_label("login", "folders", "search", "attachment", "section", "options"); // disable composing in html on mobile devices unless config option set to allow if ($this->rcmail->output->get_env("xmobile") && !$this->rcmail->config->get("allow_mobile_html_composing")) { global $CONFIG; $CONFIG['htmleditor'] = false; } } $this->rcmail->output->set_env("rcp_skin", $this->rcpSkin); $this->addClasses(); } /** * Hook retrieving config options (including user settings). */ public function elasticGetConfig($arg) { // Substitute the skin name retrieved from the config file with "elastic" for the plugins that treat // elastic-based skins as "elastic." if (empty($arg['name']) || $arg['name'] != "skin" || !array_key_exists(str_replace("_elastic", "", $arg['result']), $this->getSkins())) { return $arg; } $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 4); // this is a call from the rc core, let's hope they fix this if (!empty($trace[3]['class']) && $trace[3]['class'] == "jqueryui") { $arg['result'] = "elastic"; } // check if the calling file is in the list of plugins to fix or it's a unit test and set the skin to elastic $fixPlugins = $this->rcmail->config->get("fix_plugins", []); if (!empty($trace[3]['file']) && (in_array(basename(dirname($trace[3]['file'])), $fixPlugins) || basename($trace[3]['file']) == "TestCase.php") ) { $arg['result'] = "elastic"; } return $arg; } function larryGetConfig($arg) { if ($this->rcmail->output->get_env("xskin_type") == "mobile") { // disable unwanted plugins on mobile devices $disablePlugins = ["preview_pane", "google_ads", "threecol"]; if (!empty($this->larryDisabledPluginsConfig) && is_array($this->larryDisabledPluginsConfig)) { $disablePlugins = array_merge($disablePlugins, $this->larryDisabledPluginsConfig); } foreach ($disablePlugins as $val) { if (isset($arg['name']) && strpos($arg['name'], $val) !== false) { $arg['result'] = false; return $arg; } } // set the layout to list on mobile devices so it can be displayed properly // IMPORTANT: we have to unset $_GET['_layout'] because on RC 1.4 setting $arg here results in adding // the new layout value to GET, which is then picked up and saved into the database by // program/steps/mail/list.inc. So the 'list' value we set here for mobile is then applied to desktop // as well. Unsetting GET fixes the issue. if (isset($arg['name']) && $arg['name'] == "layout") { $arg['result'] = "list"; unset($_GET['_layout']); return $arg; } } // Substitute the skin name retrieved from the config file with "larry" for the plugins that treat larry-based // skins as "classic." if (empty($arg['name']) || $arg['name'] != "skin" || !$this->isRcpSkin($arg['result'])) { return $arg; } $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 4); // check if the calling file is in the list of plugins to fix or it's a unit test and set the skin to larry $fixPlugins = $this->rcmail->config->get("fix_plugins", []); if (!empty($trace[3]['file']) && (in_array(basename(dirname($trace[3]['file'])), $fixPlugins) || basename($trace[3]['file']) == "TestCase.php") ) { $arg['result'] = "larry"; } return $arg; } public function elasticRenderPage($arg) { $this->addLoginRcpBranding($arg); return $arg; } public function larryRenderPage($arg) { // check if it's an error page if (strpos($arg['content'], "uibox centerbox errorbox")) { return; } $this->addLoginRcpBranding($arg); if ($this->rcmail->task != "login" && $this->rcmail->task != "logout") { $this->larryModifyPageHtml($arg); } return $arg; } /** * Modifies the html of the non-login Roundcube pages. * Unit tested via renderPage() * * @param array $arg * @codeCoverageIgnore */ protected function larryModifyPageHtml(array &$arg) { // check if it's an error page if (strpos($arg['content'], "uibox centerbox errorbox")) { return; } // if using a desktop skin on mobile devices after clicked "use desktop skin" show a link to revert to // mobile skin in the top bar if (isset($_COOKIE['rcs_disable_mobile_skin'])) { $this->replace( '