X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fstylesheet.php;h=9658652f397752d594c79d5d35b56040394e9648;hp=8c62a7b7b7a37afaf166945aa196a5436a85ada6;hb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;hpb=cc7c700143bca2420ff0497e648d31a18cc9add2 diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 8c62a7b7b7..9658652f39 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 (isGetRequestParameterSet('theme')) $newTheme = getRequestParameter('theme'); + if (isPostRequestParameterSet('theme')) $newTheme = secureString(postRequestParameter('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] ?>