Marked some unfinished extensions as 'work-in-progress'
[mailer.git] / inc / header.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/25/2003 *
4  * ===================                          Last change: 11/24/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : header.php                                       *
8  * -------------------------------------------------------------------- *
9  * Short description : Outputs header HTML code, will not when frameset *
10  *           is active                                                  *
11  * -------------------------------------------------------------------- *
12  * Kurzbeschreibung  : Gibt nur dann HTML-Code fuer den Kopf-Bereich    *
13  *           aus, wenn Frameset nicht aktiv ist                         *
14  * -------------------------------------------------------------------- *
15  * $Revision::                                                        $ *
16  * $Date::                                                            $ *
17  * $Tag:: 0.2.1-FINAL                                                 $ *
18  * $Author::                                                          $ *
19  * Needs to be in all Files and every File needs "svn propset           *
20  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
21  * -------------------------------------------------------------------- *
22  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
23  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
24  * For more information visit: http://www.mxchange.org                  *
25  *                                                                      *
26  * This program is free software; you can redistribute it and/or modify *
27  * it under the terms of the GNU General Public License as published by *
28  * the Free Software Foundation; either version 2 of the License, or    *
29  * (at your option) any later version.                                  *
30  *                                                                      *
31  * This program is distributed in the hope that it will be useful,      *
32  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
33  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
34  * GNU General Public License for more details.                         *
35  *                                                                      *
36  * You should have received a copy of the GNU General Public License    *
37  * along with this program; if not, write to the Free Software          *
38  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
39  * MA  02110-1301  USA                                                  *
40  ************************************************************************/
41
42 // Some security stuff...
43 if (!defined('__SECURITY')) {
44         die();
45 } // END - if
46
47 // Init header
48 $GLOBALS['page_header'] = '';
49
50 // Is the header already sent?
51 if (($GLOBALS['header_sent'] != 1) && ($GLOBALS['header_sent'] != 2)) {
52         // If not in CSS mode generate the header
53         if (getOutputMode() != 1) {
54                 // Prepare the header for HTML output
55                 loadHtmlHeader();
56         } // END - if
57
58         // Closing HEAD tag
59         if ($GLOBALS['header_sent'] == '0') $GLOBALS['header_sent'] = 1;
60 } // END - if
61
62 // Add BODY tag or not?
63 if ((getOutputMode() != 1) && (getOutputMode() != -1) && ($GLOBALS['header_sent'] == 1) && ((getModule() != 'frametester') || (isGetRequestParameterSet('frame')))) {
64         loadTemplate('page_body');
65         $GLOBALS['header_sent'] = 2;
66 } // END - if
67
68 // [EOF]
69 ?>