X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=7e46cc0af0bde3e3ec403bbfbd48c6bb2c44e0ad;hb=094f3a6af3b901020395eafee16b3b5e151f1137;hp=219918f6b25e32b310880266b7310ea89f22756b;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 219918f6b2..7e46cc0af0 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,7 +1,7 @@ 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 - $STYLES = merge_array($STYLES, getExtensionCssFiles()); + $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 = ''; - foreach ($STYLES as $value) { + foreach ($stylesList as $value) { // Only include found CSS files (to reduce 404 requests) $FQFN = $basePath . $value; @@ -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! - outputHtml(''); + $GLOBALS['__page_header'] .= $OUT . '%}{%ext,version=sql_patches%}" />'; } // [EOF]