Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / index.php
index c4d19f2d72cad29bf188eec5c86dfbff3478b2ec..928ec04109431ae7c7fa97f053e885e791d3c829 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/23/2003 *
- * ===============                              Last change: 03/27/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/23/2003 *
+ * ===================                          Last change: 03/27/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : index.php                                        *
  * $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                           *
- * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif (!EXT_IS_ACTIVE("sql_patches")) {
-       // The extension "sql_patches" *MUST* be activated or you have lot's of problems!
-       LOAD_URL("admin.php");
+       exit();
+} elseif (!isExtensionInstalled('sql_patches')) {
+       // Redirect to admin area
+       redirectToUrl('admin.php');
 }
 
-// Load adverstising template
-define('__GUEST_ADVERT', LOAD_TEMPLATE("guest_advert", true));
-
 // Generate a tableset for the menu title and content
-LOAD_TEMPLATE("guest_header");
+loadTemplate('guest_header', false, array('date_time' => generateDateTime(time(), 1)));
 
 // Add code-message here
 handleCodeMessage();
 
 // Some of you needs this to be extracted into a template... ???
-LOAD_TEMPLATE("guest_menu_td");
-
-// When no what value is provided take the "home" value
-if (empty($GLOBALS['what'])) $GLOBALS['what'] = getConfig('index_home');
-
-// Adding the main content module here
-if (empty($GLOBALS['action'])) {
-       // Get action value from what value
-       $GLOBALS['action'] = GET_ACTION("guest", $GLOBALS['what']);
-} // END - if
+loadTemplate('guest_menu_td');
 
 // Add the guest's menu here...
-if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
+if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
        // Show only when guest menu is active
-       ADD_MENU("guest", $GLOBALS['action'], $GLOBALS['what']);
+       addMenu('guest', getAction(), getWhat());
 } // END - if
 
 // TDs between menu and content
-LOAD_TEMPLATE("guest_menu_content");
+loadTemplate('guest_menu_content');
 
 // Disable block-mode by default
-$GLOBALS['block_mode'] = false;
+enableBlockMode(false);
 
 // Construct FQFN
-$INC = sprintf("inc/modules/guest/action-%s.php", $GLOBALS['action']);
+$inc = sprintf("inc/modules/guest/action-%s.php", getAction());
 
 // Is the file there?
-if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("guest", $GLOBALS['action'], $GLOBALS['what']))) {
+if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
        // Requested module is available so we load it
-       LOAD_INC_ONCE($INC);
+       loadIncludeOnce($inc);
 } else {
        // Invalid module specified or not found...
-       LOAD_URL("modules.php?module=index");
+       redirectToUrl('modules.php?module=index');
 }
 
-if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
+if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches'))) {
        // Right side of content (hint: a good place for 120x600 skyscraper banner!)
-       LOAD_TEMPLATE("guest_content_footer");
+       loadTemplate('guest_content_footer');
 
        // Some advertising stuff?
-       LOAD_TEMPLATE("guest_advert2");
+       loadTemplate('guest_advert2');
 
-       OUTPUT_HTML("  </td>
+       outputHtml("  </td>
 </tr>");
 
        // Goto TOP template
-       LOAD_TEMPLATE("guest_goto_top");
+       loadTemplate('guest_goto_top');
 } // END - if
 
 // Footer template (Thanx to Mr. Glaus!)
-LOAD_TEMPLATE("guest_footer");
+loadTemplate('guest_footer');
 
-//
+// [EOF]
 ?>