X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fstylesheet.php;h=d77e9c93318db48f5d54adb9bd93d9bb55541c01;hp=edebd693fc049fa65e7de754849e9a217f4c9475;hb=744a2d99cf8759ecd219214bc98f0d32ae038ec1;hpb=e6e3183f794b385f5acc38b371c220cc35cdac38 diff --git a/inc/stylesheet.php b/inc/stylesheet.php index edebd693fc..d77e9c9331 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,7 +1,7 @@ 0)) { - switch ($_CONFIG['css_php']) { - case "DIRECT": - OUTPUT_HTML(""); + if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { + switch (getConfig('css_php')) { + 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! + 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 + $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 . '%}" />'; } -// +// [EOF] ?>