X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fheader.php;h=3ea5b4acfbc8529cb3d6adb484d65981fd8234e3;hp=59a2f5b24d1ee90d9c245ba8596c8db1da616810;hb=a975001c8e332a6af3513ea57e9acebeaadf1640;hpb=94105795f6c6195c2630c09303c0aeb4ffbe15de diff --git a/inc/header.php b/inc/header.php index 59a2f5b24d..3ea5b4acfb 100644 --- a/inc/header.php +++ b/inc/header.php @@ -12,9 +12,14 @@ * Kurzbeschreibung : Gibt nur dann HTML-Code fuer den Kopf-Bereich * * aus, wenn Frameset nicht aktiv ist * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -34,93 +39,99 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); +if (!defined('__SECURITY')) { + die(); } -// Initialize variables -if (!isset($header)) $header = 0; - -if (($header != "1") && ($header != "2")) { +// Is the header already sent? +if (($GLOBALS['header_sent'] != '1') && ($GLOBALS['header_sent'] != '2')) { // If not in CSS mode generate the header - if (($CSS != "1")) { - // Generate header - $TITLE = ""; + if (getOutputMode() != '1') { + // Config and database connection valid? + if ((isConfigLocalLoaded()) && (isConfigLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionActive('sql_patches'))) { + // Init title + $TITLE = ''; + + // Title decoration enabled? + if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_left') != '')) $TITLE .= trim(getConfig('title_left'))." "; - // Add title decorations? (left) - if ((count($CONFIG) > 1) && (is_resource($link)) && ($db) !== false) { - if (($CONFIG['title_decoration'] == 'Y') && (trim(!empty($CONFIG['title_left'])))) $TITLE .= trim($CONFIG['title_left'])." "; - $TITLE .= MAIN_TITLE; + // Do we have some extra title? + if (isExtraTitleSet()) { + // Then prepent it + $TITLE .= getExtraTitle() . ' by '; + } // END - if + + // Add main title + $TITLE .= getConfig('MAIN_TITLE'); // Add title of module? (middle decoration will also be added!) - if (($CONFIG['title_mod_show'] == 'Y') || ((empty($GLOBALS['what'])) && (empty($GLOBALS['action']))) || ($GLOBALS['module'] == "admin")) $TITLE .= " ".trim($CONFIG['title_middle'])." ".ADD_MODULE_TITLE($GLOBALS['module']); + if ((getConfig('enable_mod_title') == 'Y') || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) { + $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getModuleTitle(getModule()); + } // END - if // Add title from what file - $MODE = ""; - if ($GLOBALS['module'] == "login") $MODE = "member"; - elseif ($GLOBALS['module'] == "index") $MODE = "guest"; - if ((!empty($MODE)) && ($CONFIG['title_what_show'] == 'Y')) $TITLE .= " ".trim($CONFIG['title_middle'])." ".GET_MOD_DESCR($MODE, $GLOBALS['what']); + $mode = ''; + if (getModule() == 'login') $mode = 'member'; + elseif (getModule() == 'index') $mode = 'guest'; + if ((!empty($mode)) && (getConfig('enable_what_title') == 'Y')) $TITLE .= " ".trim(getConfig('title_middle'))." ".getModuleDescription($mode, getWhat()); // Add title decorations? (right) - if (($CONFIG['title_decoration'] == 'Y') && (!empty($CONFIG['title_right']))) $TITLE .= " ".trim($CONFIG['title_right']); + if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_right') != '')) $TITLE .= " ".trim(getConfig('title_right')); // Remember title in constant for the template - define('__PAGE_TITLE', html_entity_decode($TITLE)); - } elseif ((!mxchange_installed) || (!admin_registered)) { - // Load language file because it was missing in installation finalizer step... *sigh* - require_once(sprintf("%sinc/language/install_%s.php", - PATH, - GET_LANGUAGE() - )); - + $content['header_title'] = $TITLE; + } elseif ((isInstalled()) && (isAdminRegistered())) { + // Installed, admin registered but no ext-sql_patches + $content['header_title'] = '[-- ' . getConfig('MAIN_TITLE').' - '.getModuleTitle(getModule()) . ' --]'; + } elseif ((isInstalled()) && (!isAdminRegistered())) { + // Installed but no admin registered + $content['header_title'] = sprintf(getMessage('SETUP_OF_MXCHANGE'), getConfig('MAIN_TITLE')); + } elseif ((!isInstalled()) || (!isAdminRegistered())) { // Installation mode - define('__PAGE_TITLE', INSTALLATION_OF_MXCHANGE); + $content['header_title'] = getMessage('INSTALLATION_OF_MXCHANGE'); } else { // Configuration not found! - define('__PAGE_TITLE', NO_CONFIG_FOUND_TITLE); - ADD_FATAL(NO_CONFIG_FOUND); + $content['header_title'] = getMessage('NO_CONFIG_FOUND_TITLE'); + + // Do not add the fatal message in installation mode + if ((!isInstalling()) && (!isConfigLoaded())) addFatalMessage(__FILE__, __LINE__, getMessage('NO_CONFIG_FOUND')); } // Save some little memory unset($TITLE); // Output page header code - LOAD_TEMPLATE("page_header"); + loadTemplate('page_header', false, $content); - // Include meta data here - LOAD_TEMPLATE("metadata"); + // Include meta data in 'guest' module + if (getModule() == 'index') { + // Load meta data template + loadTemplate('metadata'); - // Add meta description to header - if ((mxchange_installed) && (admin_registered) && ($GLOBALS['module'] != "admin") && ($GLOBALS['module'] != "login") && (isset($db)) && (isset($link))) { - // Add meta description not in admin and login module and when the script is installed - META_DESCRIPTION($GLOBALS['module'], $GLOBALS['what']); - } + // Add meta description to header + if ((isInstalled()) && (isAdminRegistered()) && (SQL_IS_LINK_UP())) { + // Add meta description not in admin and login module and when the script is installed + generateMetaDescriptionCode(getModule(), getWhat()); + } // END - if + } // END - if // Include more header data here - LOAD_TEMPLATE("header"); + loadTemplate('header'); // Include stylesheet - include (PATH."inc/stylesheet.php"); - } + loadIncludeOnce('inc/stylesheet.php'); + } // END - if // Closing HEAD tag - if ($CSS != "1") OUTPUT_HTML(""); - $header = 1; -} + if (getOutputMode() != '1') outputHtml(''); + if ($GLOBALS['header_sent'] == 0) $GLOBALS['header_sent'] = 1; +} // END - if -// Set unsetted variables -if (empty($_GET['frame'])) $_GET['frame'] = ""; - -// Load body or not -if ((($GLOBALS['module'] != "frametester")) || (($header == "1") && ($GLOBALS['module'] == "frametester") && (!empty($_GET['frame']))) && ($CSS != "1")) { - // Is the header sent and the script is not the mail confirmation script and not a CSS? - if (($header == "1") && (basename($_SERVER['PHP_SELF']) != "mailid.php") && ($CSS != "1")) { - // Add BODY tag - LOAD_TEMPLATE("page_body"); - $header = 2; - } -} +// Add BODY tag or not? +if ((getOutputMode() != '1') && ($GLOBALS['header_sent'] == 1) && ((getModule() != 'frametester') || (isGetRequestElementSet('frame')))) { + loadTemplate('page_body'); + $GLOBALS['header_sent'] = 2; +} // END - if -// +// [EOF] ?>