Double question mark fixed
[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 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.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 // This is a fake-CSS file loader, more a JavaScript loader...
45 // This is in one way good and in one not. The whole reset part will be
46 // by-passed even in this "faked" CSS mode. The bad news is that this makes all
47 // JS calls on this script to CSS calls. So no real "request" like in MVC
48 // pattern is given...
49 //
50 // But mxchange 0.3.0 will show that in better way! :D :D :D
51 $GLOBALS['output_mode'] = 1;
52 $GLOBALS['module'] = 'js';
53
54 // Load the required file(s)
55 require('inc/config-global.php');
56
57 // Set header and HTTP status
58 setContentType('text/javascript');
59 setHttpStatus('404 NOT FOUND');
60
61 // Is 'js' is provied?
62 if (isGetRequestParameterSet('js')) {
63         // Load header
64         loadIncludeOnce('inc/header.php');
65
66         // Prepare include file for looking
67         $inc = sprintf("inc/js/js-%s.php",
68                 getRequestParameter('js')
69         );
70
71         // Is that file readable?
72         if (isIncludeReadable($inc)) {
73                 // Okay, found
74                 setHttpStatus('200 OK');
75
76                 // Include it
77                 loadIncludeOnce($inc);
78         } // END - if
79
80         // Load footer
81         loadIncludeOnce('inc/footer.php');
82 } // END - if
83
84 // Shutdown
85 shutdown();
86
87 // [EOF]
88 ?>