]> git.mxchange.org Git - mailer.git/blobdiff - inc/stylesheet.php
Introduceed new extension ext-server_name which has been extracted from
[mailer.git] / inc / stylesheet.php
index 392ea5a4a5d5ac275cee46c60ca6b87efd5e9926..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,126 +1,3 @@
 <?php
-/************************************************************************
- * Mailer v0.2.1-FINAL                                Start: 08/29/2003 *
- * ===================                          Last change: 12/03/2004 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : stylesheet.php                                   *
- * -------------------------------------------------------------------- *
- * Short description : Stylesheets are stored here                      *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Style-Sheets werden hier abgelegt                *
- * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
- *                                                                      *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
- * (at your option) any later version.                                  *
- *                                                                      *
- * This program is distributed in the hope that it will be useful,      *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
- * GNU General Public License for more details.                         *
- *                                                                      *
- * You should have received a copy of the GNU General Public License    *
- * along with this program; if not, write to the Free Software          *
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
- * MA  02110-1301  USA                                                  *
- ************************************************************************/
-
-// Some security stuff...
-if (!defined('__SECURITY')) {
-       die();
-}
-
-// Default styles
-$stylesList = array(
-               'general.css',
-);
-
-// Add stylesheet for installation
-if ((isInstallationPhase())) $stylesList[] = 'install.css';
-
-// When no CSS output-mode is set, set it to file-output
-if (!isConfigEntrySet('css_php')) setConfigEntry('css_php', 'FILE');
-
-// Output CSS files or content or link to css.php ?
-if ((getOutputMode() == 1) || (getConfig('css_php') == 'DIRECT')) {
-       // Load CSS files
-       $stylesList = merge_array($stylesList, getExtensionCssFiles());
-
-       // Generate base path
-       $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme());
-
-       // Output inclusion lines
-       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)) {
-                       switch (getConfig('css_php')) {
-                               case 'DIRECT': // Just link them (unsupported)
-                                       outputHtml('<link rel="stylesheet" type="text/css" href="{%url=theme/' . getCurrentTheme() . '/' . $value . '%}" />');
-                                       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 = '<link rel="stylesheet" type="text/css" href="{%url=css.php';
-       if ((isInstallationPhase())) {
-               // Default theme first
-               $newTheme = 'default';
-               if (isGetRequestParameterSet('theme'))  $newTheme = getRequestParameter('theme');
-               if (isPostRequestParameterSet('theme')) $newTheme = secureString(postRequestParameter('theme'));
-               $OUT .= '?theme=' . $newTheme . '&amp;installing=1';
-       } else {
-               // Add SVN revision to bypass caching problems
-               $OUT .= '?rev=' . getConfig('CURR_SVN_REVISION');
-       }
-
-       // Close tag
-       outputHtml($OUT . '%}" />');
-}
-
-// [EOF]
+// @DEPRECATED
 ?>