ac69417377efd830c44995c5565b2ee4531c5785
[mailer.git] / 0.2.1 / inc / footer.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 08/25/2003 *\r
4  * ===============                              Last change: 10/23/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : footer.php                                       *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Add the HTML code for the footer                 *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Den Fuss des HTML-Codes hinzufügen               *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2007 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Global variable stuff\r
35 global $link, $frame, $CSS, $_GET, $header, $_SERVER;\r
36 \r
37 // Some security stuff...\r
38 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
39 {\r
40         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";\r
41         require($INC);\r
42 }\r
43 \r
44 if (($FOOTER != "1") && ($FOOTER != "2") && ($CSS != "1"))\r
45 {\r
46         // Currently nothing more...\r
47         if (((frameset_active) || ($GLOBALS['module'] == "frametester") || ($header < 2)) && (empty($frame)))\r
48         {\r
49                 // Add some non-frameset stuff\r
50                 OUTPUT_HTML ("<NOFRAMES>\r
51 <BODY>");\r
52         }\r
53 \r
54         // Output the generated HTML code or do nothing in direct-mode\r
55         if (!empty($FATAL[0]))\r
56         {\r
57                 // Output fatal error messages\r
58                 require_once(PATH."inc/fatal_errors.php");\r
59         }\r
60 \r
61         // Shall we display the copyright notice?\r
62         if ((empty($frame)) && (basename($_SERVER['PHP_SELF']) != "mailid_top.php") && (WRITE_FOOTER == true))\r
63         {\r
64                 LOAD_TEMPLATE("copyright");\r
65         }\r
66 \r
67         // Load page footer\r
68         LOAD_TEMPLATE("page_footer");\r
69 \r
70         if (((frameset_active) || ($GLOBALS['module'] == "frametester")) && ($FOOTER == "1"))\r
71         {\r
72                 // Add the closing NOFRAMES tag\r
73                 OUTPUT_HTML ("</NOFRAMES>");\r
74         }\r
75         // And the last closing HTML tag\r
76         OUTPUT_HTML ("</HTML>");\r
77 \r
78         // Footer has been reached\r
79         $FOOTER = 1;\r
80 \r
81         // Output HTML code\r
82         OUTPUT_HTML ("");\r
83 \r
84         // Close link\r
85         if ($link) { SQL_CLOSE($link, __FILE__, __LINE__); } else { ADD_FATAL(NO_DB_LINK); }\r
86 }\r
87  elseif ($CSS == "1")\r
88 {\r
89         // Footer has been reached\r
90         $FOOTER = 1;\r
91 \r
92         // Output CSS content\r
93         OUTPUT_HTML ("");\r
94 }\r
95 //\r
96 ?>\r