X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=baaee6da2c3ff5de98744b6f37393a5ed2d9fdb0;hb=33a76a20bc94ffe95e9f13906eb7dc5cf354948d;hp=3748c130d14b6ebc7bb08875c69b5070933029a7;hpb=81bfbcd72e424060ea1223b49ad92fcfa150f361;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 3748c130d1..baaee6da2c 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) - OUTPUT_HTML(''); + $GLOBALS['__page_header'] .= ''; break; case 'FILE': // Output contents - OUTPUT_HTML(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 ((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, $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] ?>