X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fstylesheet.php;h=baaee6da2c3ff5de98744b6f37393a5ed2d9fdb0;hp=7cd2a38cf4d105ed69964e001fe0781b1813b130;hb=35fd597b272983427fd88f541ea55642e0b42c9e;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2 diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 7cd2a38cf4..baaee6da2c 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,56 +43,70 @@ if (!defined('__SECURITY')) { // Default styles $stylesList = array( 'general.css', + 'ajax.css', ); // Add stylesheet for installation -if ((isInstallationPhase())) $stylesList[] = 'install.css'; +if ((isInstaller())) { + array_push($stylesList, 'install.css'); +} // END - if // When no CSS output-mode is set, set it to file-output -if (!isConfigEntrySet('css_php')) setConfigEntry('css_php', 'FILE'); +if (!isConfigEntrySet('css_php')) { + setConfigEntry('css_php', 'FILE'); +} // END - if + +// Get current theme +$currentTheme = getCurrentTheme(); + +// Has the theme changed? +if ($currentTheme != getSession('mailer_theme')) { + // Then set it + setMailerTheme($currentTheme); +} // END - if // Output CSS files or content or link to css.php ? -if ((isCssOutputMode()) || (getConfig('css_php') == 'DIRECT')) { +if ((isCssOutputMode()) || (getCssPhp() == 'DIRECT')) { // Load CSS files $stylesList = merge_array($stylesList, getExtensionCssFiles()); // Generate base path - $basePath = sprintf("%stheme/%s/css/", getPath(), getCurrentTheme()); + $basePath = getBasePathFromTheme($currentTheme); // Output inclusion lines foreach ($stylesList as $value) { // Only include found CSS files (to reduce 404 requests) - $FQFN = $basePath . $value; + $FQFN = $basePath . '/' . $value; // Do include only existing files and whose are not empty if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { - switch (getConfig('css_php')) { + switch (getCssPhp()) { case 'DIRECT': // Just link them (unsupported) - $GLOBALS['page_header'] .= ''; + $GLOBALS['__page_header'] .= ''; break; case 'FILE': // Output contents - $GLOBALS['page_header'] .= readFromFile($FQFN); + $GLOBALS['__page_header'] .= readFromFile($FQFN); break; default: // Invalid mode! - debug_report_bug(__FILE__, __LINE__, sprintf("Invalid css_php value %s detected.", getConfig('css_php'))); + reportBug(__FILE__, __LINE__, sprintf('Invalid css_php value %s detected.', getCssPhp())); break; } // END - switch } // END - if } // END - foreach -} elseif ((isHtmlOutputMode()) || (getConfig('css_php') == 'INLINE')) { +} elseif ((isHtmlOutputMode()) || (getCssPhp() == 'INLINE')) { // Load CSS files $stylesList = merge_array($stylesList, getExtensionCssFiles()); // Generate base path - $basePath = sprintf("%stheme/%s/css/", getPath(), getCurrentTheme()); + $basePath = getBasePathFromTheme(getCurrentTheme()); // Output inclusion lines $OUT = ''; foreach ($stylesList as $value) { // Only include found CSS files (to reduce 404 requests) - $FQFN = $basePath . $value; + $FQFN = $basePath . '/' . $value; // Do include only existing files and whose are not empty if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { @@ -102,23 +116,20 @@ if ((isCssOutputMode()) || (getConfig('css_php') == 'DIRECT')) { } // END - foreach // Load template - $GLOBALS['page_header'] .= loadTemplate('css_inline', true, $OUT); + $GLOBALS['__page_header'] .= loadTemplate('css_inline', TRUE, $OUT); } else { // Now we load all CSS files from css.php! $OUT = ''; + $GLOBALS['__page_header'] .= $OUT . '%}{%ext,version=sql_patches%}" />'; } // [EOF]