0)) { switch (getCssPhp()) { case 'DIRECT': // Just link them (unsupported) $GLOBALS['__page_header'] .= ''; break; case 'FILE': // Output contents $GLOBALS['__page_header'] .= removeDeprecatedComment(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 = getBasePathFromTheme(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, removeDeprecatedComment($OUT)); } else { // Now we load all CSS files from css.php! $OUT = ''; } // [EOF] ?>