Failed SQL queries are now also reported in bug mails, SQL queries improved (more...
[mailer.git] / inc / stylesheet.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 }
44
45 // Default styles
46 $stylesList = array(
47                 'general.css',
48 );
49
50 // Add stylesheet for installation
51 if ((isInstallationPhase())) $stylesList[] = '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         $stylesList = merge_array($stylesList, getExtensionCssFiles());
60
61         // Generate base path
62         $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme());
63
64         // Output inclusion lines
65         foreach ($stylesList 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                                         $GLOBALS['page_header'] .= '<link rel="stylesheet" type="text/css" href="{%url=theme/' . getCurrentTheme() . '/' . $value . '%}" />';
74                                         break;
75
76                                 case 'FILE': // Output contents
77                                         $GLOBALS['page_header'] .= 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 } elseif ((getOutputMode() == '0') || (getConfig('css_php') == 'INLINE')) {
87         // Load CSS files
88         $stylesList = merge_array($stylesList, getExtensionCssFiles());
89
90         // Generate base path
91         $basePath = sprintf("%stheme/%s/css/", getConfig('PATH'), getCurrentTheme());
92
93         // Output inclusion lines
94         $OUT = '';
95         foreach ($stylesList as $value) {
96                 // Only include found CSS files (to reduce 404 requests)
97                 $FQFN = $basePath . $value;
98
99                 // Do include only existing files and whose are not empty
100                 if ((isFileReadable($FQFN)) && (filesize($FQFN) > 0)) {
101                         // Load CSS content
102                         $OUT .= readFromFile($FQFN);
103                 } // END - if
104         } // END - foreach
105
106         // Load template
107         $GLOBALS['page_header'] .= loadTemplate('css_inline', true, $OUT);
108 } else {
109         // Now we load all CSS files from css.php!
110         $OUT = '<link rel="stylesheet" type="text/css" href="{%url=css.php';
111         if ((isInstallationPhase())) {
112                 // Default theme first
113                 $newTheme = 'default';
114                 if (isGetRequestParameterSet('theme'))  $newTheme = getRequestParameter('theme');
115                 if (isPostRequestParameterSet('theme')) $newTheme = secureString(postRequestParameter('theme'));
116                 $OUT .= '?theme=' . $newTheme . '&amp;installing=1';
117         } else {
118                 // Add SVN revision to bypass caching problems
119                 $OUT .= '?rev=' . getConfig('CURR_SVN_REVISION');
120         }
121
122         // Close tag
123         $GLOBALS['page_header'] .= $OUT . '%}{%ext,version=sql_patches%}" />';
124 }
125
126 // [EOF]
127 ?>