X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fstylesheet.php;h=f551ef47b7591c74e7b59193e56a1fa6505a87ab;hp=392ea5a4a5d5ac275cee46c60ca6b87efd5e9926;hb=f40ee6b3fe47308625f3490dedb1c52174ddf9f1;hpb=57227d33e870ec5cd271209c4a978a52b45c2dd6 diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 392ea5a4a5..f551ef47b7 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,126 +1,3 @@ 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 - $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! - $OUT = ''); -} - -// [EOF] +// @DEPRECATED ?>