A lot more naming conventions applied
[mailer.git] / inc / footer.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 10/23/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : footer.php                                       *
8  * -------------------------------------------------------------------- *
9  * Short description : Add the HTML code for the footer                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Den Fuss des HTML-Codes hinzufuegen              *
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 // Global variable stuff
35 global $link, $frame, $CSS, $_GET, $header, $_SERVER;
36
37 // Some security stuff...
38 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
39 {
40         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
41         require($INC);
42 }
43
44 if (($FOOTER != "1") && ($FOOTER != "2") && ($CSS != "1"))
45 {
46         // Currently nothing more...
47         if (((frameset_active) || ($GLOBALS['module'] == "frametester") || ($header < 2)) && (empty($frame)))
48         {
49                 // Add some non-frameset stuff
50                 OUTPUT_HTML("<NOFRAMES>
51 <BODY>");
52         }
53
54         // Output the generated HTML code or do nothing in direct-mode
55         if (!empty($FATAL[0]))
56         {
57                 // Output fatal error messages
58                 require_once(PATH."inc/fatal_errors.php");
59         }
60
61         // Shall we display the copyright notice?
62         if ((empty($frame)) && (basename($_SERVER['PHP_SELF']) != "mailid_top.php") && (WRITE_FOOTER == true))
63         {
64                 LOAD_TEMPLATE("copyright");
65         }
66
67         // Load page footer
68         LOAD_TEMPLATE("page_footer");
69
70         if (((frameset_active) || ($GLOBALS['module'] == "frametester")) && ($FOOTER == "1"))
71         {
72                 // Add the closing NOFRAMES tag
73                 OUTPUT_HTML("</NOFRAMES>");
74         }
75         // And the last closing HTML tag
76         OUTPUT_HTML("</HTML>");
77
78         // Footer has been reached
79         $FOOTER = 1;
80
81         // Output HTML code
82         OUTPUT_HTML("");
83
84         // Close link
85         if ($link) { SQL_CLOSE($link, __FILE__, __LINE__); } else { ADD_FATAL(NO_DB_LINK); }
86 }
87  elseif ($CSS == "1")
88 {
89         // Footer has been reached
90         $FOOTER = 1;
91
92         // Output CSS content
93         OUTPUT_HTML("");
94 }
95 //
96 ?>