X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fstylesheet.php;h=7e46cc0af0bde3e3ec403bbfbd48c6bb2c44e0ad;hp=b2d81171024f82b37b0d251b0fcc49594c01cccd;hb=0ed9eaa5aea8db1f690a983a39ff4b2074faf6c5;hpb=ef1aea52af98b373687fb9bf46df4ca77d56ff4f diff --git a/inc/stylesheet.php b/inc/stylesheet.php index b2d8117102..7e46cc0af0 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -14,11 +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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 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 * @@ -44,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) { @@ -67,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) - outputHtml(''); + $GLOBALS['__page_header'] .= ''; break; case 'FILE': // Output contents - outputHtml(readFromFile($FQFN)); + $GLOBALS['__page_header'] .= readFromFile($FQFN); break; default: // Invalid mode! - debug_report_bug(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 = ''; @@ -103,23 +116,20 @@ if ((getOutputMode() == 1) || (getConfig('css_php') == 'DIRECT')) { } // END - foreach // Load template - loadTemplate('css_inline', false, $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]