X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=7e46cc0af0bde3e3ec403bbfbd48c6bb2c44e0ad;hb=7454c5626871adc340ae1c90a2140366c4b73d9c;hp=7b83cda9532411964d94f4a7ac06f72fe8956d44;hpb=f9a9c09e1ae257449bfd98f8854e321efba1dc3c;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 7b83cda953..7e46cc0af0 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": - $load = implode("", file($file)); - OUTPUT_HTML($load); + case 'FILE': // Output contents + $GLOBALS['__page_header'] .= readFromFile($FQFN); break; - } - } - } + + 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 = sprintf("%stheme/%s/css/", getPath(), 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(""); + + // Close tag + $GLOBALS['__page_header'] .= $OUT . '%}{%ext,version=sql_patches%}" />'; } -// +// [EOF] ?>