X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fstylesheet.php;h=f551ef47b7591c74e7b59193e56a1fa6505a87ab;hb=f40ee6b3fe47308625f3490dedb1c52174ddf9f1;hp=81ee2dca3e8e9eff0c552a2f86a390a2de2663b9;hpb=90ea643fa8c32b94f6f5ed636730d87eb31bba6b;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 81ee2dca3e..f551ef47b7 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,128 +1,3 @@ 0)) { - switch (getConfig('css_php')) { - case 'DIRECT': // Just link them (unsupported) - $GLOBALS['page_header'] .= ''; - break; - - case 'FILE': // Output contents - $GLOBALS['page_header'] .= readFromFile($FQFN); - break; - - default: // Invalid mode! - debug_report_bug(__FILE__, __LINE__, sprintf("Invalid css_php value %s detected.", getConfig('css_php'))); - break; - } // END - switch - } // END - if - } // END - foreach -} elseif ((isHtmlOutputMode()) || (getConfig('css_php') == 'INLINE')) { - // Load CSS files - $stylesList = merge_array($stylesList, getExtensionCssFiles()); - - // Generate base path - $basePath = sprintf("%stheme/%s/css/", getPath(), 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! - $OUT = ''; -} - -// [EOF] +// @DEPRECATED ?>