]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-bank_infos.php
New wrapper functions introduced, TODOs.txt updated
[mailer.git] / inc / modules / member / what-bank_infos.php
index 9316759fe2631703c9af8f4a258e173b381a8ed0..5c019a242ba8c5c7c45b5ff6ffdec6467fb88aba 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 02/12/2004 *
- * ================                             Last change: 01/07/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 02/12/2004 *
+ * ===================                          Last change: 01/07/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-                                            *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  :                                                  *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * 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 (!IS_MEMBER()) {
-       LOAD_URL("modules.php?module=index");
-} elseif (!EXT_IS_ACTIVE("bank")) {
-       ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "bank");
-       return;
+       die();
+} elseif (!isMember()) {
+       redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
+addYouAreHereLink('member', __FILE__);
+
+if ((!isExtensionActive('bank')) && (!isAdmin())) {
+       displayMessage(generateExtensionInactiveNotInstalledMessage('bank'));
+       return;
+}
 
 // Loads the name-matching template
-LOAD_TEMPLATE(substr(basename(__FILE__), 5, -4));
+loadTemplate(substr(basename(__FILE__), 5, -4));
 
-//
+// [EOF]
 ?>