Some cleanups/improvements
[mailer.git] / js.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/15/2008 *
4  * ===================                          Last change: 10/15/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : js.php                                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Image code for multi-purposes                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Code-Bild fuer verschiedene Zwecke               *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // XDEBUG call
39 //* DEBUG: */ xdebug_start_trace();
40
41 // Load security stuff here
42 require('inc/libs/security_functions.php');
43
44 // Init start time
45 $GLOBALS['__start_time'] = microtime(TRUE);
46
47 /*
48  * This is a fake-CSS file loader, more a JavaScript loader...
49  * This is in one way good and in one not. The whole reset part will be
50  * by-passed even in this "faked" CSS mode. The bad news is that this makes all
51  * JS calls on this script to CSS calls. So no real "request" like in MVC
52  * pattern is given...
53  *
54  * But Mailer-Project 0.3.0 will show that in better way! :D :D :D
55  */
56 $GLOBALS['__module']      = 'js';
57 $GLOBALS['__output_mode'] = 1;
58
59 // Load the required file(s)
60 require('inc/config-global.php');
61
62 // Set header and HTTP status
63 setContentType('text/javascript');
64 setHttpStatus('404 Not Found');
65
66 // Is 'js' is provied?
67 if (isGetRequestElementSet('js')) {
68         // Load header
69         loadIncludeOnce('inc/header.php');
70
71         // Prepare include file for looking
72         $inc = sprintf('inc/js/js-%s.php', getRequestElement('js'));
73
74         // Is that file readable?
75         if (isIncludeReadable($inc)) {
76                 // Okay, found
77                 setHttpStatus('200 OK');
78
79                 // Include it
80                 loadIncludeOnce($inc);
81         } // END - if
82
83         // Load footer
84         loadIncludeOnce('inc/footer.php');
85 } // END - if
86
87 // Shutdown
88 doShutdown();
89
90 // [EOF]
91 ?>