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