X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=3c16a1335914e3a281c4d35e8b2e5e21ef807308;hb=5c0d2c01826cb3802aed682513b7f98454394867;hp=7e46cc0af0bde3e3ec403bbfbd48c6bb2c44e0ad;hpb=5ef42cb239e9225f160f5963a718f14bc70a1866;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 7e46cc0af0..3c16a13359 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * 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 * @@ -47,7 +47,7 @@ $stylesList = array( ); // Add stylesheet for installation -if ((isInstallationPhase())) { +if ((isInstaller())) { array_push($stylesList, 'install.css'); } // END - if @@ -71,12 +71,12 @@ if ((isCssOutputMode()) || (getCssPhp() == 'DIRECT')) { $stylesList = merge_array($stylesList, getExtensionCssFiles()); // Generate base path - $basePath = sprintf("%stheme/%s/css/", getPath(), $currentTheme); + $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)) { @@ -86,11 +86,11 @@ if ((isCssOutputMode()) || (getCssPhp() == 'DIRECT')) { break; case 'FILE': // Output contents - $GLOBALS['__page_header'] .= readFromFile($FQFN); + $GLOBALS['__page_header'] .= removeDeprecatedComment(readFromFile($FQFN)); break; default: // Invalid mode! - reportBug(__FILE__, __LINE__, sprintf("Invalid css_php value %s detected.", getCssPhp())); + reportBug(__FILE__, __LINE__, sprintf('Invalid css_php value %s detected.', getCssPhp())); break; } // END - switch } // END - if @@ -100,13 +100,13 @@ if ((isCssOutputMode()) || (getCssPhp() == 'DIRECT')) { $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)) { @@ -116,11 +116,11 @@ if ((isCssOutputMode()) || (getCssPhp() == 'DIRECT')) { } // END - foreach // Load template - $GLOBALS['__page_header'] .= loadTemplate('css_inline', TRUE, $OUT); + $GLOBALS['__page_header'] .= loadTemplate('css_inline', TRUE, removeDeprecatedComment($OUT)); } else { // Now we load all CSS files from css.php! $OUT = '