Added more wrapper, commented out another noisy debug line
[mailer.git] / index.php
index 336226c6ab6d28fa3c7324b7854aa3f0951af391..a07f405aa42d578f40957f51a322205afa290ffb 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 08/25/2003 *
- * ===============                              Last change: 11/23/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 08/25/2003 *
+ * ===================                          Last change: 11/23/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : index.php                                        *
  * Kurzbeschreibung  : Index-Seite. Eine simple Weiterleitung auf die   *
  *           modules.php                                                *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  * MA  02110-1301  USA                                                  *
  ************************************************************************/
 
-// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require_once("inc/libs/security_functions.php");
+// XDEBUG call
+//* DEBUG: */ xdebug_start_trace();
+
+// Load security stuff here
+require('inc/libs/security_functions.php');
 
-// Init "action" and "what"
-global $what, $action;
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
+// Init start time
+$GLOBALS['__start_time'] = microtime(true);
 
-// Set module
-$GLOBALS['module'] = "index";
+// Set module/what and output mode
+$GLOBALS['__module']      = 'index';
+$GLOBALS['__what']        = 'welcome';
+$GLOBALS['__output_mode'] = '0';
 
 // Load config.php
-require ("inc/config.php");
+require('inc/config-global.php');
+
+// Fix what to 'home'
+setWhat(getIndexHome());
+
+// Shall we display 'home' in index.php?
+if ((isExtensionInstalledAndNewer('sql_patches', '0.8.3')) && (isDisplayHomeInIndexEnabled())) {
+       // Include module (and exit in inc/footer.php)
+       doIncludeModule();
+} // END - if
+
+//////////////////////////////////////////////////
+// Display regular index 'front' page from here
+//////////////////////////////////////////////////
+
+// Check for cookies
+if ((isSessionVariableSet('visited')) || (getConfig('index_delay') > -1)) {
+       // Set content type
+       setContentType('text/html');
 
-// Is the script installed?
-if (defined('mxchange_installed') && (mxchange_installed)) {
        // Header
-       require(PATH."inc/header.php");
-
-       // Fix missing array elements here
-       if (!isset($CONFIG['index_delay']))             $CONFIG['index_delay'] = 0;
-       if (!isset($CONFIG['index_cookie']))    $CONFIG['index_cookie'] = 0;
-
-       // Check for cookies
-       if ((empty($_COOKIE['visited'])) || ($CONFIG['index_delay'] == 0) || ($CONFIG['index_cookie'] == 0)) {
-               // Is the index page configured for redirect pr not?
-               if ($CONFIG['index_cookie'] > 0) {
-                       // Set cookie and remeber it for specified time
-                       @setcookie("visited", "true", (time() + $CONFIG['index_cookie']), COOKIE_PATH);
-               } elseif (!empty($_COOKIE['visited'])) {
-                       // Remove cookie when admin set 0 in setup
-                       @setcookie("visited", "", (time() - 3600), COOKIE_PATH);
-               }
-
-               // Template laden
-               LOAD_TEMPLATE("index", false, ADD_URL_DATA(""));
-
-               // Shall I insert an automated forward?
-               if ($CONFIG['index_delay'] > 0) {
-                       // This will be a JavaScript-redirect!
-                       define('__DELAY_VALUE', ($CONFIG['index_delay'] * 1000 + 500));
-                       define('__MOD_VALUE'  , ADD_URL_DATA("index"));
-                       LOAD_TEMPLATE("index_forward");
-               }
-       } else {
-               // Redirect to main page
-               LOAD_URL(URL."/modules.php?module=index");
+       loadIncludeOnce('inc/header.php');
+
+       // Is the index page configured for redirect pr not?
+       if (getConfig('index_cookie') > 0) {
+               // Set cookie and remeber it for specified time
+               setSession('visited', 'true');
+       } elseif (isSessionVariableSet('visited')) {
+               // Remove cookie when admin set 0 in setup
+               setSession('visited', '');
        }
 
-       // Footer
-       require(PATH."inc/footer.php");
+       // Template laden
+       loadTemplate('index');
+
+       // Shall I insert an automated forward?
+       if (getConfig('index_delay') > 0) {
+               // This will be a JavaScript-redirect!
+               $content['delay']  = (getConfig('index_delay') * 1000 + 500);
+               $content['module'] = 'index';
+
+               // Load template
+               loadTemplate('index_forward', false, $content);
+       } // END - if
+
+       // Footer (which will call doShutdown() for us)
+       loadIncludeOnce('inc/footer.php');
 } else {
-       // You have to configure first!
-       LOAD_URL("install.php");
+       // Redirect to main page
+       redirectToUrl('modules.php?module=index');
 }
 
-// All done here...
+// [EOF]
 ?>