X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=12838b3b3392d8bab258b01df89c1a38bad66e1f;hb=739139fb13eae88204e355202bffe20ee5fc7d40;hp=c5e0d7a80ad02ea7e1ffb17e27243eaff97ffe00;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index c5e0d7a80a..12838b3b33 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -18,6 +18,7 @@ * 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 * * * * This program is free software; you can redistribute it and/or modify * @@ -42,12 +43,12 @@ if (!defined('__SECURITY')) { } // Default styles -$STYLES = array( +$stylesList = array( 'general.css', ); // Add stylesheet for installation -if ((isInstallationPhase())) $STYLES[] = 'install.css'; +if ((isInstallationPhase())) $stylesList[] = 'install.css'; // When no CSS output-mode is set, set it to file-output if (!isConfigEntrySet('css_php')) setConfigEntry('css_php', 'FILE'); @@ -55,13 +56,13 @@ if (!isConfigEntrySet('css_php')) setConfigEntry('css_php', 'FILE'); // Output CSS files or content or link to css.php ? if ((getOutputMode() == 1) || (getConfig('css_php') == 'DIRECT')) { // Load CSS files - $STYLES = merge_array($STYLES, getExtensionCssFiles()); + $stylesList = merge_array($stylesList, getExtensionCssFiles()); // Generate base path $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme()); // Output inclusion lines - foreach ($STYLES as $value) { + foreach ($stylesList as $value) { // Only include found CSS files (to reduce 404 requests) $FQFN = $basePath . $value; @@ -69,11 +70,11 @@ if ((getOutputMode() == 1) || (getConfig('css_php') == 'DIRECT')) { if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { switch (getConfig('css_php')) { 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! @@ -84,14 +85,14 @@ if ((getOutputMode() == 1) || (getConfig('css_php') == 'DIRECT')) { } // END - foreach } elseif ((getOutputMode() == '0') || (getConfig('css_php') == 'INLINE')) { // Load CSS files - $STYLES = merge_array($STYLES, getExtensionCssFiles()); + $stylesList = merge_array($stylesList, getExtensionCssFiles()); // Generate base path $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme()); // Output inclusion lines $OUT = ''; - foreach ($STYLES as $value) { + foreach ($stylesList as $value) { // Only include found CSS files (to reduce 404 requests) $FQFN = $basePath . $value; @@ -103,23 +104,23 @@ 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! - outputHtml(''); + $GLOBALS['page_header'] .= $OUT . '%}{%ext,version=sql_patches%}" />'; } // [EOF]