Cache depency was to strict
[mailer.git] / js.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Deactivate caching system in fake-CSS mode
35 define('_OB_CACHING', "old");
36
37 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
38 require_once("inc/libs/security_functions.php");
39
40 // Init "action" and "what"
41 global $what, $action;
42 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
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 $CSS = "1"; $GLOBALS['module'] = "js";
52
53 // Load the required file(s)
54 require("inc/config.php");
55
56 // Is this script installed and a JavaScript tag is provied?
57 if ((isBooleanConstantAndTrue('mxchange_installed')) && (isset($_GET['tag']))) {
58         // Set header
59         @header("Content-type: text/javascript");
60
61         // Load header
62         require_once(PATH."inc/header.php");
63
64         // Prepare include file for looking
65         $fqfn = sprintf("%sinc/js/tag-%s.php",
66                 PATH,
67                 SQL_ESCAPE($_GET['tag'])
68         );
69
70         // Is that file readable?
71         if (FILE_READABLE($fqfn)) {
72                 // Include it
73                 require_once($fqfn);
74         } // END - if 
75
76         // Load footer
77         require_once(PATH."inc/footer.php");
78 } // END - if
79
80 //
81 ?>