X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=b2d81171024f82b37b0d251b0fcc49594c01cccd;hb=3fc95231ba85cc8c292b81bf502d4d7fab85ca8b;hp=73dda5cde74ca8adaeec550287c8a02faae785b2;hpb=2e68ea39a430a7217e58747b877acaa3e92ea997;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 73dda5cde7..b2d8117102 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,7 +1,7 @@ 0)) { + if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { switch (getConfig('css_php')) { - case "DIRECT": - OUTPUT_HTML(""); + case 'DIRECT': // Just link them (unsupported) + outputHtml(''); break; - case "FILE": - OUTPUT_HTML(READ_FILE($file)); + 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($OUT . '%}" />'); } -// +// [EOF] ?>