X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=3c16a1335914e3a281c4d35e8b2e5e21ef807308;hb=7770a9545292d628afd2be4f58f86da5c9139619;hp=5b0888977cfd6e49c7a6b80a10f343a09000dfa6;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 5b0888977c..3c16a13359 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,7 +1,7 @@ 0)) { - switch (getConfig('css_php')) { - case "DIRECT": - OUTPUT_HTML(""); + if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { + switch (getCssPhp()) { + case 'DIRECT': // Just link them (unsupported) + $GLOBALS['__page_header'] .= ''; + break; + + case 'FILE': // Output contents + $GLOBALS['__page_header'] .= removeDeprecatedComment(readFromFile($FQFN)); break; - case "FILE": - OUTPUT_HTML(READ_FILE($FQFN)); + default: // Invalid mode! + reportBug(__FILE__, __LINE__, sprintf('Invalid css_php value %s detected.', getCssPhp())); break; } // END - switch } // END - if } // END - foreach +} elseif ((isHtmlOutputMode()) || (getCssPhp() == 'INLINE')) { + // Load CSS files + $stylesList = merge_array($stylesList, getExtensionCssFiles()); + + // Generate base path + $basePath = getBasePathFromTheme(getCurrentTheme()); + + // Output inclusion lines + $OUT = ''; + foreach ($stylesList as $value) { + // Only include found CSS files (to reduce 404 requests) + $FQFN = $basePath . '/' . $value; + + // Do include only existing files and whose are not empty + if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { + // Load CSS content + $OUT .= readFromFile($FQFN); + } // END - if + } // END - foreach + + // Load template + $GLOBALS['__page_header'] .= loadTemplate('css_inline', TRUE, removeDeprecatedComment($OUT)); } else { // Now we load all CSS files from css.php! - OUTPUT_HTML(""); + $OUT .= '?theme=' . getCurrentTheme() . '&installing=1'; + } else { + // Add SVN revision to bypass caching problems + $OUT .= '?rev=' . getCurrentRepositoryRevision(); + } + + // Close tag + $GLOBALS['__page_header'] .= $OUT . '%}{%ext,version=sql_patches%}" />'; } -// +// [EOF] ?>