X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fstylesheet.php;h=8aa0924e7da797dd823a416b8c85b119ff36a707;hp=ebe08b6e9b21d726af8adc94564816a539bab101;hb=f2b603aed42bfdf7a94611d7bae71fe3a1048890;hpb=ad30a667fd8abeb576c04026b62c2e8a29d86f52 diff --git a/inc/stylesheet.php b/inc/stylesheet.php index ebe08b6e9b..8aa0924e7d 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -14,12 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 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 * @@ -45,21 +43,35 @@ if (!defined('__SECURITY')) { // Default styles $stylesList = array( 'general.css', + 'ajax.css', ); // Add stylesheet for installation -if ((isInstallationPhase())) $stylesList[] = 'install.css'; +if ((isInstallationPhase())) { + 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 ((getOutputMode() == 1) || (getConfig('css_php') == 'DIRECT')) { +if ((isCssOutputMode()) || (getCssPhp() == 'DIRECT')) { // Load CSS files $stylesList = merge_array($stylesList, getExtensionCssFiles()); // Generate base path - $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme()); + $basePath = sprintf("%stheme/%s/css/", getPath(), $currentTheme); // Output inclusion lines foreach ($stylesList as $value) { @@ -68,27 +80,27 @@ if ((getOutputMode() == 1) || (getConfig('css_php') == 'DIRECT')) { // 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 ((getOutputMode() == '0') || (getConfig('css_php') == 'INLINE')) { +} elseif ((isHtmlOutputMode()) || (getCssPhp() == 'INLINE')) { // Load CSS files $stylesList = merge_array($stylesList, getExtensionCssFiles()); // Generate base path - $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme()); + $basePath = sprintf("%stheme/%s/css/", getPath(), getCurrentTheme()); // Output inclusion lines $OUT = ''; @@ -104,23 +116,20 @@ if ((getOutputMode() == 1) || (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]