X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fstylesheet.php;h=715bf8fc4cf23fd531bd8670b231d45a49c12848;hp=0e2045ae026938a12e0498acee01af40b7e8632b;hb=fb573d4c3d981d52fd969a6d7167d8dc839be688;hpb=03f62d0b89aa9276ac37f4d616d940fae184d850 diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 0e2045ae02..715bf8fc4c 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(''); + $GLOBALS['page_header'] .= ''; break; case 'FILE': // Output contents - OUTPUT_HTML(readFromFile($FQFN)); + $GLOBALS['page_header'] .= readFromFile($FQFN); break; default: // Invalid mode! - debug_report_bug(sprintf("Invalid css_php value %s detected.", getConfig('css_php'))); + 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(''); + 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] ?>