X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fstylesheet.php;h=47c6b65abd6efa1a0778f416c8ecc505fdcefac0;hb=b8a6f8012aa3509d8e0f8fd078e044f20e80707a;hp=9c3a67dd9e3714007f1c9f9b11b7c2de4ef01385;hpb=60494e212a67fe360bfbb481eb4928480a6f379b;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 9c3a67dd9e..47c6b65abd 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,7 +1,7 @@ 0)) - { - switch ($_CONFIG['css_php']) - { - case "DIRECT": - OUTPUT_HTML(""); - break; - - case "FILE": - $load = implode("", file($file)); - OUTPUT_HTML($load); - break; - } - } - } -} - else -{ + if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { + switch (getConfig('css_php')) { + case 'DIRECT': // Just link them (unsupported) + outputHtml(''); + break; + + case 'FILE': // Output contents + outputHtml(readFromFile($FQFN)); + break; + + default: // Invalid mode! + debug_report_bug(sprintf("Invalid css_php value %s detected.", getConfig('css_php'))); + break; + } // END - switch + } // END - if + } // END - foreach +} elseif ((getOutputMode() == '0') || (getConfig('css_php') == 'INLINE')) { + // Load CSS files + $stylesList = merge_array($stylesList, getExtensionCssFiles()); + + // Generate base path + $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), 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 + loadTemplate('css_inline', false, $OUT); +} else { // Now we load all CSS files from css.php! - OUTPUT_HTML(""); + + // Close tag + outputHtml('%}" />'); } -// +// [EOF] ?>