2006-12-02 04:36:16 +00:00
< ? php
/*
+ ----------------------------------------------------------------------------------------------+
| e107 website system : http :// e107 . org
| Steve Dunstan 2001 - 2002 : jalist @ e107 . org
| Released under the terms and conditions of the GNU General Public License ( http :// gnu . org ) .
|
| $Source : / cvs_backup / e107_0 . 8 / e107_themes / templates / header_default . php , v $
2009-08-06 22:41:35 +00:00
| $Revision : 1.38 $
| $Date : 2009 - 08 - 06 22 : 41 : 35 $
| $Author : bugrain $
2006-12-02 04:36:16 +00:00
+-----------------------------------------------------------------------------------------------+
*/
if ( ! defined ( 'e107_INIT' )) { exit ; }
define ( " USER_AREA " , TRUE );
define ( " ADMIN_AREA " , FALSE );
2008-12-04 21:05:05 +00:00
$e107 = e107 :: getInstance ();
$e107 -> sql -> db_Mark_Time ( '(Header Top)' );
2006-12-02 04:36:16 +00:00
//
// *** Code sequence for headers ***
// IMPORTANT: These items are in a carefully constructed order. DO NOT REARRANGE
// without checking with experienced devs! Various subtle things WILL break.
//
// We realize this is a bit (!) of a mess and hope to make further cleanups in a future release.
//
// A: Define themable header parsing
// B: Send HTTP headers that come before any html
// C: Send start of HTML
2008-11-09 20:31:10 +00:00
// D: Send CSS
// E: Send JS
2006-12-02 04:36:16 +00:00
// F: Send Meta Tags and Icon links
// G: Send final theme headers (theme_head() function)
// H: Generate JS for image preloading (setup for onload)
// I: Calculate onload() JS functions to be called
// J: Send end of html <head> and start of <body>
// K: (The rest is ignored for popups, which have no menus)
// L: (optional) Body JS to disable right clicks
// M: Send top of body for custom pages and for news
// N: Send other top-of-body HTML
//
// Load order notes for devs
// * Browsers wait until ALL HTML has loaded before executing ANY JS
// * The last CSS tag downloaded supercedes earlier CSS tags
// * Browsers don't care when Meta tags are loaded. We load last due to
// a quirk of e107's log subsystem.
// * Multiple external <link> file references slow down page load. Each one requires
// browser-server interaction even when cached.
//
//
// A: Define themeable header parsing
//
if ( ! function_exists ( " parseheader " )) {
function parseheader ( $LAYOUT ){
global $tp ;
$tmp = explode ( " \n " , $LAYOUT );
for ( $c = 0 ; $c < count ( $tmp ); $c ++ ) {
if ( preg_match ( " / { .+?}/ " , $tmp [ $c ])) {
echo $tp -> parseTemplate ( $tmp [ $c ]);
} else {
echo $tmp [ $c ];
}
}
}
}
//
// B: Send HTTP headers (these come before ANY html)
//
// send the charset to the browser - overrides spurious server settings with the lan pack settings.
2007-09-02 08:42:11 +00:00
// Would like to set the MIME type appropriately - but it broke other things
2008-12-04 21:05:05 +00:00
//if (stristr($_SERVER["HTTP_ACCEPT"], "application/xhtml+xml"))
2009-07-19 11:44:30 +00:00
// header("Content-type: application/xhtml+xml; charset=utf-8", TRUE);
2007-09-02 08:42:11 +00:00
//else
2009-07-19 11:44:30 +00:00
header ( " Content-type: text/html; charset=utf-8 " , TRUE );
2006-12-02 04:36:16 +00:00
2009-07-19 11:44:30 +00:00
echo ( defined ( " STANDARDS_MODE " ) ? " " : " <?xml version='1.0' encoding='utf-8' " . " ? " . " > \n " ) . " <!DOCTYPE html PUBLIC \" -//W3C//DTD XHTML 1.1//EN \" \" http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd \" > \n " ;
2006-12-02 04:36:16 +00:00
//
// C: Send start of HTML
//
echo " <html xmlns='http://www.w3.org/1999/xhtml' " . ( defined ( " TEXTDIRECTION " ) ? " dir=' " . TEXTDIRECTION . " ' " : " " ) . ( defined ( " CORE_LC " ) ? " xml:lang= \" " . CORE_LC . " \" " : " " ) . " >
< head >
2009-07-19 11:44:30 +00:00
< meta http - equiv = 'content-type' content = 'text/html; charset=utf-8' />
2009-07-13 10:17:41 +00:00
< meta http - equiv = 'content-style-type' content = 'text/css' />
" ;
echo ( defined ( " CORE_LC " )) ? " <meta http-equiv='content-language' content=' " . CORE_LC . " ' /> \n " : " " ;
echo " <title> " . ( defined ( 'e_PAGETITLE' ) ? e_PAGETITLE . ' - ' : ( defined ( 'PAGE_NAME' ) ? PAGE_NAME . ' - ' : " " )) . SITENAME . " </title> \n \n " ;
2006-12-02 04:36:16 +00:00
// Wysiwyg JS support on or off.
2009-07-14 11:05:54 +00:00
if ( varset ( $pref [ 'wysiwyg' ], FALSE ) && check_class ( $pref [ 'post_html' ]))
2008-06-13 20:20:23 +00:00
{
2006-12-02 04:36:16 +00:00
define ( " e_WYSIWYG " , TRUE );
2008-06-13 20:20:23 +00:00
}
else
{
2006-12-02 04:36:16 +00:00
define ( " e_WYSIWYG " , FALSE );
}
2008-06-13 20:20:23 +00:00
2008-11-09 20:31:10 +00:00
//
// D: send CSS comes first
//
2008-06-13 20:20:23 +00:00
2008-11-09 20:31:10 +00:00
//Core CSS first
if ( ! defined ( " PREVIEWTHEME " ) && ( ! isset ( $no_core_css ) || ! $no_core_css )) {
2008-12-04 21:05:05 +00:00
2008-11-09 20:31:10 +00:00
echo " <link rel='stylesheet' href=' " . e_FILE_ABS . " e107.css' type='text/css' /> \n " ;
2006-12-02 04:36:16 +00:00
}
2009-08-06 22:41:35 +00:00
require_once ( e_FILE . " /e_css.php " );
2006-12-02 04:36:16 +00:00
2008-11-09 20:31:10 +00:00
//Plugin specific CSS
2008-01-27 11:02:34 +00:00
if ( isset ( $eplug_css ) && $eplug_css )
{
2007-07-03 03:24:35 +00:00
if ( is_array ( $eplug_css ))
{
2008-01-27 11:02:34 +00:00
$eplug_css_unique = array_unique ( $eplug_css );
foreach ( $eplug_css_unique as $kcss )
{
echo ( $kcss [ 0 ] == " < " ) ? $kcss : " <link rel='stylesheet' href=' { $kcss } ' type='text/css' /> \n " ;
}
2007-07-03 03:24:35 +00:00
}
else
{
2007-11-01 20:28:29 +00:00
echo " <link rel='stylesheet' href=' { $eplug_css } ' type='text/css' /> \n " ;
2007-07-03 03:24:35 +00:00
}
2006-12-02 04:36:16 +00:00
}
2008-11-09 20:31:10 +00:00
//Theme CSS
2006-12-02 04:36:16 +00:00
if ( defined ( " PREVIEWTHEME " )) {
echo " <link rel='stylesheet' href=' " . PREVIEWTHEME . " style.css' type='text/css' /> \n " ;
} else {
$css_default = " all " ;
if ( isset ( $theme_css_php ) && $theme_css_php ) {
echo " <link rel='stylesheet' href=' " . THEME_ABS . " theme-css.php' type='text/css' /> \n " ;
} else {
if ( isset ( $pref [ 'themecss' ]) && $pref [ 'themecss' ] && file_exists ( THEME . $pref [ 'themecss' ]))
{
// Support for print and handheld media.
if ( file_exists ( THEME . " style_mobile.css " )){
echo " <link rel='stylesheet' href=' " . THEME_ABS . " style_mobile.css' type='text/css' media='handheld' /> \n " ;
$css_default = " screen " ;
}
if ( file_exists ( THEME . " style_print.css " )){
echo " <link rel='stylesheet' href=' " . THEME_ABS . " style_print.css' type='text/css' media='print' /> \n " ;
$css_default = " screen " ;
}
echo " <link rel='stylesheet' href=' " . THEME_ABS . " { $pref [ 'themecss' ] } ' type='text/css' media=' { $css_default } ' /> \n " ;
}
else
{
// Support for print and handheld media.
if ( file_exists ( THEME . " style_mobile.css " )){
echo " <link rel='stylesheet' href=' " . THEME_ABS . " style_mobile.css' type='text/css' media='handheld' /> \n " ;
$css_default = " screen " ;
}
if ( file_exists ( THEME . " style_print.css " )){
echo " <link rel='stylesheet' href=' " . THEME_ABS . " style_print.css' type='text/css' media='print' /> \n " ;
$css_default = " screen " ;
}
echo " <link rel='stylesheet' href=' " . THEME_ABS . " style.css' type='text/css' media=' { $css_default } ' /> \n " ;
}
2008-11-09 20:31:10 +00:00
}
}
// Load Plugin Header Files
if ( varset ( $pref [ 'e_header_list' ]) && is_array ( $pref [ 'e_header_list' ]))
{
foreach ( $pref [ 'e_header_list' ] as $val )
{
if ( is_readable ( e_PLUGIN . $val . " /e_header.php " ))
{
require_once ( e_PLUGIN . $val . " /e_header.php " );
2006-12-02 04:36:16 +00:00
}
}
}
2008-11-09 20:31:10 +00:00
//
// E: Send JS
//
// Send Javascript Libraries ALWAYS (for now)
$hash = md5 ( serialize ( varset ( $pref [ 'e_jslib' ])) . serialize ( varset ( $THEME_JSLIB )) . THEME . e_LANGUAGE . ADMIN ) . '_front' ;
echo " <script type='text/javascript' src=' " . e_FILE_ABS . " e_jslib.php? { $hash } '></script> \n " ;
/*
if ( ! isset ( $no_core_js ) || ! $no_core_js )
{
echo " <script type='text/javascript' src=' " . e_FILE_ABS . " e_js.php'></script> \n " ;
}
*/
// Send Plugin JS Files
2008-12-04 21:05:05 +00:00
if ( isset ( $eplug_js ) && $eplug_js )
2008-11-09 20:31:10 +00:00
{
echo " \n <!-- eplug_js --> \n " ;
if ( is_array ( $eplug_js ))
{
$eplug_js_unique = array_unique ( $eplug_js );
foreach ( $eplug_js_unique as $kjs )
{
echo ( $kjs [ 0 ] == " < " ) ? $kjs : " <script type='text/javascript' src=' { $kjs } '></script> \n " ;
}
}
else
{
echo " <script type='text/javascript' src=' { $eplug_js } '></script> \n " ;
}
}
// Send Theme JS Files
2008-12-04 21:05:05 +00:00
if ( isset ( $theme_js_php ) && $theme_js_php )
2008-11-09 20:31:10 +00:00
{
echo " <script type='text/javascript' src=' " . THEME_ABS . " theme-js.php'></script> \n " ;
2008-12-04 21:05:05 +00:00
}
else
2008-11-09 20:31:10 +00:00
{
if ( file_exists ( THEME . 'theme.js' )) { echo " <script type='text/javascript' src=' " . THEME_ABS . " theme.js'></script> \n " ; }
if ( is_readable ( e_FILE . 'user.js' ) && filesize ( e_FILE . 'user.js' )) { echo " <script type='text/javascript' src=' " . e_FILE_ABS . " user.js'></script> \n " ; }
if ( file_exists ( THEME . 'theme.vbs' )) { echo " <script type='text/vbscript' src=' " . THEME_ABS . " theme.vbs'></script> \n " ; }
if ( is_readable ( e_FILE . 'user.vbs' ) && filesize ( e_FILE . 'user.vbs' )) { echo " <script type='text/vbscript' src=' " . e_FILE_ABS . " user.vbs'></script> \n " ; }
}
2008-12-04 21:05:05 +00:00
//XXX - CHAP JS
2008-11-09 20:31:10 +00:00
if ( ! USER && ( $pref [ 'user_tracking' ] == " session " ) && varset ( $pref [ 'password_CHAP' ], 0 ))
{
if ( $pref [ 'password_CHAP' ] == 2 )
{
// *** Add in the code to swap the display tags
$js_body_onload [] = " expandit('loginmenuchap','nologinmenuchap'); " ;
}
echo " <script type='text/javascript' src=' " . e_FILE_ABS . " chap_script.js'></script> \n " ;
$js_body_onload [] = " getChallenge(); " ;
}
2008-12-04 21:05:05 +00:00
if (( isset ( $pref [ 'enable_png_image_fix' ]) && $pref [ 'enable_png_image_fix' ] == true ) || ( isset ( $sleight ) && $sleight == true ))
2008-11-09 20:31:10 +00:00
{
echo " <script type='text/javascript' src=' " . e_FILE_ABS . " sleight_js.php'></script> \n \n " ;
}
//IEpngfix - visible by IE6 only
if (( isset ( $pref [ 'enable_png_image_fix' ]) && $pref [ 'enable_png_image_fix' ] == true ) || ( isset ( $sleight ) && $sleight == true )) {
/*
2008-12-04 21:05:05 +00:00
* The only problem is that the browser is REALLY ,
2008-11-09 20:31:10 +00:00
* REALLY slow when it has to render more elements
* try e . g . " div, img, td, input " ( or just * ) instead only img rule
* However I hope it ' ll force IE6 users to switch to a modern browser ...
*/
echo " <!--[if lte IE 6]> \n " ;
echo " <style type='text/css'> \n " ;
echo " img { \n " ;
echo " behavior: url(' " . e_FILE_ABS . " iepngfix.htc.php'); \n " ;
echo " } \n " ;
echo " </style> \n " ;
echo " <![endif]--> \n " ;
}
2008-12-04 21:05:05 +00:00
//headerjs moved below
2008-11-09 20:31:10 +00:00
2007-11-01 20:28:29 +00:00
// Deprecated function finally removed
//if(function_exists('core_head')){ echo core_head(); }
2006-12-02 04:36:16 +00:00
//
2008-11-09 20:31:10 +00:00
// F: Send Meta Tags, Icon links, headerjs()
2006-12-02 04:36:16 +00:00
//
// --- Load plugin Meta files and eplug_ before others --------
2006-12-05 09:33:20 +00:00
if ( is_array ( $pref [ 'e_meta_list' ]))
{
2008-11-09 20:31:10 +00:00
foreach ( $pref [ 'e_meta_list' ] as $val )
2006-12-02 04:36:16 +00:00
{
2008-11-09 20:31:10 +00:00
if ( is_readable ( e_PLUGIN . $val . " /e_meta.php " ))
{
require_once ( e_PLUGIN . $val . " /e_meta.php " );
}
2006-12-02 04:36:16 +00:00
}
}
2008-11-09 20:31:10 +00:00
//headerjs moved here - it should be able to read any JS/code sent by e_meta
if ( function_exists ( 'headerjs' )) { echo headerjs (); }
2006-12-02 04:36:16 +00:00
$diz_merge = ( defined ( " META_MERGE " ) && META_MERGE != FALSE && $pref [ 'meta_description' ][ e_LANGUAGE ]) ? $pref [ 'meta_description' ][ e_LANGUAGE ] . " " : " " ;
$key_merge = ( defined ( " META_MERGE " ) && META_MERGE != FALSE && $pref [ 'meta_keywords' ][ e_LANGUAGE ]) ? $pref [ 'meta_keywords' ][ e_LANGUAGE ] . " , " : " " ;
function render_meta ( $type )
{
global $pref , $tp ;
if ( ! isset ( $pref [ 'meta_' . $type ][ e_LANGUAGE ])){ return ;}
if ( ! $pref [ 'meta_' . $type ][ e_LANGUAGE ]){ return ; }
if ( $type == " tag " )
{
return str_replace ( " < " , " < " , $tp -> toHTML ( $pref [ 'meta_tag' ][ e_LANGUAGE ], FALSE , " nobreak, no_hook, no_make_clickable " )) . " \n " ;
}
else
{
return '<meta name="' . $type . '" content="' . $pref [ 'meta_' . $type ][ e_LANGUAGE ] . '" />' . " \n " ;
}
}
2007-07-11 13:50:49 +00:00
echo ( defined ( " META_DESCRIPTION " )) ? " \n <meta name= \" description \" content= \" " . $diz_merge . META_DESCRIPTION . " \" /> \n " : render_meta ( 'description' );
echo ( defined ( " META_KEYWORDS " )) ? " \n <meta name= \" keywords \" content= \" " . $key_merge . META_KEYWORDS . " \" /> \n " : render_meta ( 'keywords' );
2006-12-02 04:36:16 +00:00
echo render_meta ( 'copyright' );
echo render_meta ( 'author' );
echo render_meta ( 'tag' );
unset ( $key_merge , $diz_merge );
// ---------- Favicon ---------
if ( file_exists ( THEME . " favicon.ico " )) {
echo " <link rel='icon' href=' " . THEME_ABS . " favicon.ico' type='image/x-icon' /> \n <link rel='shortcut icon' href=' " . THEME_ABS . " favicon.ico' type='image/xicon' /> \n " ;
} elseif ( file_exists ( e_BASE . " favicon.ico " )) {
echo " <link rel='icon' href=' " . SITEURL . " favicon.ico' type='image/x-icon' /> \n <link rel='shortcut icon' href=' " . SITEURL . " favicon.ico' type='image/xicon' /> \n " ;
}
//
// G: Send Theme Headers
//
if ( function_exists ( 'theme_head' )){
echo theme_head ();
}
//
2008-11-09 20:31:10 +00:00
// FIXME H: Generate JS for image preloads
2008-12-04 21:05:05 +00:00
//
2007-07-11 13:50:49 +00:00
2009-07-12 14:44:57 +00:00
if ( $pref [ 'image_preload' ] && is_dir ( THEME . 'images' ))
{
2006-12-02 04:36:16 +00:00
$ejs_listpics = '' ;
2009-07-12 14:44:57 +00:00
2006-12-02 04:36:16 +00:00
$handle = opendir ( THEME . 'images' );
while ( $file = readdir ( $handle )) {
if ( preg_match ( " #(jpg|jpeg|gif|bmp|png) $ #i " , $file )) {
$ejs_listpics .= $file . " , " ;
}
}
$ejs_listpics = substr ( $ejs_listpics , 0 , - 1 );
closedir ( $handle );
if ( ! isset ( $script_text )) $script_text = '' ;
$script_text .= " ejs_preload(' " . THEME_ABS . " images/',' " . $ejs_listpics . " '); \n " ;
}
if ( isset ( $script_text ) && $script_text ) {
echo " <script type='text/javascript'> \n " ;
echo " <!-- \n " ;
echo $script_text ;
echo " // --> \n " ;
echo " </script> \n " ;
}
//
2008-11-09 20:31:10 +00:00
// FIXME - I: Calculate JS onload() functions for the BODY tag
2008-12-04 21:05:05 +00:00
//
2007-09-27 20:58:11 +00:00
// Fader menu
2008-01-27 11:02:34 +00:00
global $eMenuActive , $eMenuArea ;
2007-09-27 20:58:11 +00:00
if ( in_array ( 'fader_menu' , $eMenuActive )) $js_body_onload [] = 'changecontent(); ' ;
// External links handling
2008-11-21 11:12:06 +00:00
$js_body_onload = array (); //'externalLinks();'; - already registered to e107:loaded Event by the new JS API
2006-12-02 04:36:16 +00:00
2007-09-27 20:58:11 +00:00
// Theme JS
if ( defined ( 'THEME_ONLOAD' )) $js_body_onload [] = THEME_ONLOAD ;
2009-02-03 11:59:12 +00:00
$body_onload = '' ;
2007-09-27 20:58:11 +00:00
if ( count ( $js_body_onload )) $body_onload = " onload= \" " . implode ( " " , $js_body_onload ) . " \" " ;
2006-12-02 04:36:16 +00:00
//
// J: Send end of <head> and start of <body>
//
2008-11-09 20:31:10 +00:00
/*
2008-12-04 21:05:05 +00:00
* Fire Event e107 : loaded
2008-11-09 20:31:10 +00:00
*/
echo " <script type='text/javascript'> \n " ;
echo " <!-- \n " ;
echo " document.observe('dom:loaded', function() { \n " ;
echo " e107Event.trigger('loaded', { element: null}, document); \n " ;
echo " }); \n " ;
echo " // --> \n " ;
echo " </script> \n " ;
2006-12-02 04:36:16 +00:00
echo " </head>
< body " . $body_onload . " > \n " ;
2008-12-04 21:05:05 +00:00
$e107 -> sql -> db_Mark_Time ( " Main Page Body " );
2006-12-02 04:36:16 +00:00
//
// K: (The rest is ignored for popups, which have no menus)
//
//echo "XX - ".$e107_popup;
// require $e107_popup =1; to use it as header for popup without menus
if ( ! isset ( $e107_popup ))
{
$e107_popup = 0 ;
}
if ( $e107_popup != 1 ) {
2006-12-22 18:47:10 +00:00
2006-12-02 04:36:16 +00:00
//
// L: (optional) Body JS to disable right clicks
//
2008-11-09 20:31:10 +00:00
// --------------------- REMOVE IT!!! ------------------------->
2006-12-02 04:36:16 +00:00
if ( isset ( $pref [ 'no_rightclick' ]) && $pref [ 'no_rightclick' ]) {
echo " <script language='javascript'> \n " ;
echo " <!-- \n " ;
echo " var message= \" Not Allowed \" ; \n " ;
echo " function click(e) { \n " ;
echo " if (document.all) { \n " ;
echo " if (event.button==2||event.button==3) { \n " ;
echo " alert(message); \n " ;
echo " return false; \n " ;
echo " } \n " ;
echo " } \n " ;
echo " if (document.layers) { \n " ;
echo " if (e.which == 3) { \n " ;
echo " alert(message); \n " ;
echo " return false; \n " ;
echo " } \n " ;
echo " } \n " ;
echo " } \n " ;
echo " if (document.layers) { \n " ;
echo " document.captureevents(event.mousedown); \n " ;
echo " } \n " ;
echo " document.onmousedown=click; \n " ;
echo " // --> \n " ;
echo " </script> \n " ;
}
2008-11-09 20:31:10 +00:00
// --------------------- REMOVE END ------------------------->
2006-12-02 04:36:16 +00:00
//
// M: Send top of body for custom pages and for news
//
2008-11-17 07:17:23 +00:00
2009-07-07 12:54:47 +00:00
// ---------- New in 0.8 -------------------------------------------------------
2009-07-09 08:31:38 +00:00
$def = THEME_LAYOUT ; // The active layout based on custompage matches.
2009-07-07 12:54:47 +00:00
2009-07-09 08:31:38 +00:00
// echo "DEF = ".$def."<br />";
2009-07-07 12:54:47 +00:00
2009-07-12 14:44:57 +00:00
if ( $def == 'legacyCustom' || $def == 'legacyDefault' ) // 0.6 themes.
2009-07-07 12:54:47 +00:00
{
2009-07-12 14:44:57 +00:00
// echo "MODE 0.6";
2009-07-09 08:31:38 +00:00
if ( $def == 'legacyCustom' )
{
$HEADER = ( $CUSTOMHEADER ) ? $CUSTOMHEADER : $HEADER ;
$FOOTER = ( $CUSTOMFOOTER ) ? $CUSTOMFOOTER : $FOOTER ;
}
2009-07-07 12:54:47 +00:00
}
2009-07-09 08:31:38 +00:00
elseif ( $def && $def != " legacyCustom " && ( isset ( $CUSTOMHEADER [ $def ]) || isset ( $CUSTOMHEADER [ $def ]))) // 0.7 themes
2009-07-07 12:54:47 +00:00
{
2009-07-07 16:04:51 +00:00
// echo " MODE 0.7";
2009-07-07 12:54:47 +00:00
$HEADER = ( $CUSTOMHEADER [ $def ]) ? $CUSTOMHEADER [ $def ] : $HEADER ;
$FOOTER = ( $CUSTOMFOOTER [ $def ]) ? $CUSTOMFOOTER [ $def ] : $FOOTER ;
}
2009-07-07 16:04:51 +00:00
elseif ( $def && isset ( $HEADER [ $def ]) && isset ( $FOOTER [ $def ])) // 0.8 themes - we use only $HEADER and $FOOTER arrays.
2009-07-07 12:54:47 +00:00
{
2009-07-07 16:04:51 +00:00
// echo " MODE 0.8";
$HEADER = $HEADER [ $def ];
$FOOTER = $FOOTER [ $def ];
2006-12-02 04:36:16 +00:00
}
2009-07-07 12:54:47 +00:00
if ( e_PAGE == 'news.php' && isset ( $NEWSHEADER ))
{
2006-12-02 04:36:16 +00:00
parseheader ( $NEWSHEADER );
}
2009-07-07 12:54:47 +00:00
else
{
parseheader ( $HEADER );
}
unset ( $def );
2006-12-02 04:36:16 +00:00
2009-07-07 12:54:47 +00:00
// -----------------------------------------------------------------------------
2006-12-02 04:36:16 +00:00
//
// N: Send other top-of-body HTML
//
if ( ADMIN ){
if ( file_exists ( e_BASE . 'install.php' )){ echo " <div class='installe' style='text-align:center'><br /><b>*** " . CORE_LAN4 . " ***</b><br /> " . CORE_LAN5 . " </div><br /><br /> " ; }
}
// Display Welcome Message when old method activated.
2008-12-04 21:05:05 +00:00
echo $e107 -> tp -> parseTemplate ( " { WMESSAGE=header} " );
2006-12-02 04:36:16 +00:00
if ( defined ( " PREVIEWTHEME " )) {
themeHandler :: showPreview ();
}
unset ( $text );
}
?>