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
$STYLES = merge_array($STYLES, getExtensionCssFiles());
// Generate base path
$basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme());
// Output inclusion lines
$OUT = '';
foreach ($STYLES 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!
outputHtml('');
}
// [EOF]
?>