HTML->XHTML preparation (still *A LOT* to convert
[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, $header;
36
37 // Some security stuff...
38 if (!defined('__SECURITY')) {
39         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40         require($INC);
41 } // END - if
42
43 // @TODO Workaround for css.php
44 if (!isset($footer)) $footer = 0;
45
46 if (($footer != "1") && ($footer != "2") && ($CSS != "1")) {
47         // Output the generated HTML code or do nothing in direct-mode
48         if (getTotalFatalMessages() > 0) {
49                 // Output fatal error messages
50                 require_once(PATH."inc/fatal_errors.php");
51         } // END - if
52
53         // Shall we display the copyright notice?
54         if ((empty($frame)) && (empty($_GET['frame'])) && (basename($_SERVER['PHP_SELF']) != "mailid_top.php") && (isBooleanConstantAndTrue('WRITE_FOOTER')) && ($header == "2")) {
55                 // Backlink enabled?
56                 if (isBooleanConstantAndTrue('ENABLE_BACKLINK')) {
57                         // Copyright with backlink, thanks! :-)
58                         LOAD_TEMPLATE("copyright_backlink");
59                 } else {
60                         // No backlink in Copyright note
61                         LOAD_TEMPLATE("copyright");
62                 }
63         } // END - if
64
65         // Shall we display the parsing time and number of queries?
66         if ((getConfig('show_timings') == "Y") && (empty($_GET['frame'])) && ($header == "2")) {
67                 // Then display it here
68                 DISPLAY_PARSING_TIME_FOOTER();
69         } // END - if
70
71         // Load page footer
72         LOAD_TEMPLATE("page_footer");
73
74         // And the last closing HTML tag
75         OUTPUT_HTML("</html>");
76 } // END - if
77
78 // Footer has been reached
79 $footer = 1;
80
81 // Output HTML code
82 OUTPUT_HTML("");
83
84 //
85 ?>