X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=147e7245d39c580209e463b98d7b2ddcab78f0ac;hb=9b06a0b9b72fbdaf5bf638df82ae37c56a5654cb;hp=42d018ed4bdb198bf27b0749b844ac7eb05d1875;hpb=aa63aed07428a99ea09002c8d072990677700080;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 42d018ed4b..147e7245d3 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,7 +1,7 @@ 0)) { + if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) { switch (getConfig('css_php')) { - case 'DIRECT': - OUTPUT_HTML(""); + case 'DIRECT': // Just link them (unsupported) + $GLOBALS['page_header'] .= ''; + break; + + case 'FILE': // Output contents + $GLOBALS['page_header'] .= readFromFile($FQFN); break; - case 'FILE': - OUTPUT_HTML(READ_FILE($FQFN)); + 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! - OUTPUT_HTML(""); + $newTheme = 'default'; + if (isPostRequestElementSet('theme')) { + $newTheme = postRequestElement('theme'); + } elseif (isGetRequestElementSet('theme')) { + $newTheme = getRequestElement('theme'); + } + $OUT .= '?theme=' . $newTheme . '&installing=1'; + } else { + // Add SVN revision to bypass caching problems + $OUT .= '?rev=' . getCurrentRepositoryRevision(); + } + + // Close tag + $GLOBALS['page_header'] .= $OUT . '%}{%ext,version=sql_patches%}" />'; } -// +// [EOF] ?>