X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=c5e0d7a80ad02ea7e1ffb17e27243eaff97ffe00;hb=73593f0b418f39ff4872d6dff0d4295bc0a4a960;hp=87c64c2e48624cebf7f69ec3dd6a03be7345639f;hpb=72288d31358f8061513f8d3d61a1f9e7feb44e50;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 87c64c2e48..c5e0d7a80a 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -1,7 +1,7 @@ 0)) { switch (getConfig('css_php')) { case 'DIRECT': // Just link them (unsupported) - OUTPUT_HTML(''); + outputHtml(''); break; case 'FILE': // Output contents - OUTPUT_HTML(readFromFile($FQFN)); + outputHtml(readFromFile($FQFN)); break; default: // Invalid mode! @@ -83,17 +82,44 @@ if ((getOutputMode() == '1') || (getConfig('css_php') == 'DIRECT')) { } // 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! - OUTPUT_HTML(''); + if (isGetRequestElementSet('theme')) $newTheme = getRequestElement('theme'); + if (isPostRequestElementSet('theme')) $newTheme = secureString(postRequestElement('theme')); + outputHtml('?theme=' . $newTheme . '&installing=1', false); + } else { + // Add SVN revision to bypass caching problems + outputHtml('?rev=' . getConfig('CURR_SVN_REVISION')); + } + + // Close tag + outputHtml('" />'); } // [EOF]