A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / stylesheet.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/29/2003 *
4  * ===============                              Last change: 12/03/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : stylesheet.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Stylesheets are stored here                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Style-Sheets werden hier abgelegt                *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Default styles
46 $STYLES = array(
47                 "general.css",
48 );
49
50 // Add stylesheet for installation
51 if ((isInstalling()) || (!isInstalled())) $STYLES[] = "install.css";
52
53 // When no CSS output-mode is set, set it to file-output
54 if (!isConfigEntrySet('css_php')) setConfigEntry('css_php', "FILE");
55
56 // Output CSS files or content or link to css.php ?
57 if (($GLOBALS['output_mode'] == "1") || (getConfig('css_php') == "DIRECT")) {
58         // Load CSS files
59         $STYLES = merge_array($STYLES, EXT_GET_CSS_FILES());
60
61         // Output inclusion lines
62         foreach ($STYLES as $value) {
63                 // Only include found CSS files (to reduce 404 requests)
64                 $BASE = sprintf("%stheme/%s/css/", constant('PATH'), GET_CURR_THEME());
65                 $FQFN = $BASE.$value;
66
67                 // Do include only existing files and whose are not empty
68                 if ((FILE_READABLE($FQFN)) && (filesize($FQFN) > 0)) {
69                         switch (getConfig('css_php')) {
70                                 case "DIRECT":
71                                         OUTPUT_HTML("<link rel=\"stylesheet\" type=\"text/css\" href=\"{!URL!}/theme/".GET_CURR_THEME()."/".$value."\" />");
72                                         break;
73
74                                 case "FILE":
75                                         OUTPUT_HTML(READ_FILE($FQFN));
76                                         break;
77                         } // END - switch
78                 } // END - if
79         } // END - foreach
80 } else {
81         // Now we load all CSS files from css.php!
82         OUTPUT_HTML("<link rel=\"stylesheet\" type=\"text/css\" href=\"{!URL!}/css.php", false);
83         if ((isInstalling()) || (!isInstalled())) {
84                 // Default theme first
85                 $newTheme = "default";
86                 if (REQUEST_ISSET_GET(('theme')))  $newTheme = REQUEST_GET(('theme'));
87                 if (REQUEST_ISSET_POST(('theme'))) $newTheme = SQL_ESCAPE(REQUEST_POST('theme'));
88                 OUTPUT_HTML("?theme=".$newTheme."&amp;installing=1", false);
89         } // END - if
90         OUTPUT_HTML("\" />");
91 }
92
93 //
94 ?>