No more SSL here
[mailer.git] / css.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/06/2004 *
4  * ===================                          Last change: 12/03/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : css.php                                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Cascading Style Sheets output                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Ausgabe der Cascading-Style-Sheets (CSS)         *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Load security stuff here
34 require('inc/libs/security_functions.php');
35
36 // Footer is disabled in CSS mode
37 $GLOBALS['__footer_sent'] = -1;
38
39 // Init start time
40 $GLOBALS['__start_time'] = microtime(TRUE);
41
42 // This is a CSS file loader
43 $GLOBALS['__module']      = 'css';
44 $GLOBALS['__output_mode'] = 1;
45
46 // Load the required file(s)
47 require('inc/config-global.php');
48
49 // Set header
50 setContentType('text/css');
51
52 // Load header
53 loadPageHeader();
54
55 // Load CSS code
56 loadStyleSheets();
57
58 // Load footer
59 loadPageFooter();
60
61 // [EOF]
62 ?>