Several more constants rewritten to getConfig()
[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 ((getOutputMode() == '1') || (getConfig('css_php') == 'DIRECT')) {
58         // Load CSS files
59         $STYLES = merge_array($STYLES, EXT_GET_CSS_FILES());
60
61         // Generate base path
62         $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme());
63
64         // Output inclusion lines
65         foreach ($STYLES as $value) {
66                 // Only include found CSS files (to reduce 404 requests)
67                 $FQFN = $basePath . $value;
68
69                 // Do include only existing files and whose are not empty
70                 if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) {
71                         switch (getConfig('css_php')) {
72                                 case 'DIRECT': // Just link them (unsupported)
73                                         OUTPUT_HTML('<link rel="stylesheet" type="text/css" href="{?URL?}/theme/' . getCurrentTheme() . '/' . $value . '" />');
74                                         break;
75
76                                 case 'FILE': // Output contents
77                                         OUTPUT_HTML(readFromFile($FQFN));
78                                         break;
79
80                                 default: // Invalid mode!
81                                         debug_report_bug(sprintf("Invalid css_php value %s detected.", getConfig('css_php')));
82                                         break;
83                         } // END - switch
84                 } // END - if
85         } // END - foreach
86 } else {
87         // Now we load all CSS files from css.php!
88         OUTPUT_HTML('<link rel="stylesheet" type="text/css" href="{?URL?}/css.php', false);
89         if ((isInstalling()) || (!isInstalled())) {
90                 // Default theme first
91                 $newTheme = 'default';
92                 if (REQUEST_ISSET_GET('theme'))  $newTheme = REQUEST_GET('theme');
93                 if (REQUEST_ISSET_POST('theme')) $newTheme = SQL_ESCAPE(REQUEST_POST('theme'));
94                 OUTPUT_HTML('?theme=' . $newTheme . '&amp;installing=1', false);
95         } // END - if
96         OUTPUT_HTML('" />');
97 }
98
99 // [EOF]
100 ?>