Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / index.php
index 7c13b54fa4124644645ea50832c5a56b39f5f89e..128dc6e3a77a7eec2b6fb3db9bc80d98a6f746b7 100644 (file)
@@ -17,7 +17,7 @@
  * 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 *
 
 // 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')) {
+       die();
+} elseif (!isExtensionActive('sql_patches')) {
        // The extension 'sql_patches' *MUST* be activated or you have lot's of problems!
        redirectToUrl('modules.php?module=admin&ext_missing=sql_patches');
 }
 
-// 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');
 
 // Add code-message here
 handleCodeMessage();
 
 // Some of you needs this to be extracted into a template... ???
-LOAD_TEMPLATE('guest_menu_td');
+loadTemplate('guest_menu_td');
 
 // When no what value is provided take the "home" value
 if (!isWhatSet()) setWhatFromConfig('index_home');
@@ -67,45 +63,45 @@ if (!isActionSet()) {
 } // END - if
 
 // 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', getAction(), getWhat());
+       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
 enableBlockMode(false);
 
 // Construct FQFN
-$INC = sprintf("inc/modules/guest/action-%s.php", getAction());
+$inc = sprintf("inc/modules/guest/action-%s.php", getAction());
 
 // Is the file there?
-if ((isIncludeReadable($INC)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
+if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
        // Requested module is available so we load it
-       loadIncludeOnce($INC);
+       loadIncludeOnce($inc);
 } else {
        // Invalid module specified or not found...
        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]
 ?>