fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / modules / member / what-surfbar_book.php
index c70cb251994d18cd96a27dbb3ee2920a626e75d3..f712de3e64c100d227ffb49f1b68079a28912c7b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/08/2008 *
- * ================                             Last change: 09/08/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 09/08/2008 *
+ * ===================                          Last change: 09/08/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-surfbar_book.php                            *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Mitglieder koennen URLs buchen                   *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif (!IS_MEMBER()) {
+       die();
+} elseif (!isMember()) {
        // Redirect
-       LOAD_URL("modules.php?module=index");
-} elseif ((!EXT_IS_ACTIVE("surfbar")) && (!IS_ADMIN())) {
-       ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "surfbar");
-       return;
+       redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
+addMenuDescription('member', __FILE__);
+
+if ((!isExtensionActive('surfbar')) && (!isAdmin())) {
+       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('surfbar'));
+       return;
+} // END - if
 
 // Still allowed to book more URLs?
 if (!SURFBAR_IF_USER_BOOK_MORE_URLS()) {
        // No more URLs allowed to book!
-       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_NO_MORE_ALLOWED);
-} elseif ((isset($_POST['ok'])) && (isset($_POST['limited']))) {
+       loadTemplate('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_NO_MORE_ALLOWED'));
+} elseif ((isFormSent()) && (isPostRequestParameterSet(('limited')))) {
        // Is limitation "no" and "limit" is > 0?
-       if (($_POST['limited'] == "N") && ((isset($_POST['limit'])) && ($_POST['limit'] > 0)) || (!isset($_POST['limit']))) {
+       if ((postRequestParameter('limited') != 'Y') && ((isPostRequestParameterSet(('limit'))) && (postRequestParameter('limit') > 0)) || (!isPostRequestParameterSet(('limit')))) {
                // Set it to unlimited
-               $_POST['limit'] = 0;
+               setPostRequestParameter('limit', 0);
        } // END - if
 
        // Register the new URL
-       $insertId = SURFBAR_MEMBER_ADD_URL($_POST['url'], $_POST['limit']);
+       $insertId = SURFBAR_MEMBER_ADD_URL(postRequestParameter('url'), postRequestParameter('limit'));
 
        // By default something went wrong
-       $msg = MEMBER_SURFBAR_URL_NOT_ADDED;
+       $message = getMessage('MEMBER_SURFBAR_URL_NOT_ADDED');
 
        // Was this fine?
        if ($insertId > 0) {
                // URL added and waiting for unlock
-               $msg = MEMBER_SURFBAR_URL_ADDED;
+               $message = getMessage('MEMBER_SURFBAR_URL_ADDED');
        } // END - if
 
        // Load message template
-       LOAD_TEMPLATE("admin_settings_saved", false, $msg);
+       loadTemplate('admin_settings_saved', false, $message);
 } else {
        // Prepare some content
        $content = array(
-               'reward'     => TRANSLATE_COMMA(SURFBAR_DETERMINE_REWARD(true)),
-               'costs'      => TRANSLATE_COMMA(SURFBAR_DETERMINE_COSTS(true)),
+               'reward'     => translateComma(SURFBAR_DETERMINE_REWARD(true)),
+               'costs'      => translateComma(SURFBAR_DETERMINE_COSTS(true)),
                'max_order'  => getConfig('surfbar_max_order'),
                'curr_order' => SURFBAR_GET_TOTAL_USER_URLS()
        );
 
        // Load surfbar order form
-       LOAD_TEMPLATE(sprintf("member_surfbar_book_%s", strtolower(getConfig('surfbar_pay_model'))), false, $content);
+       loadTemplate(sprintf("member_surfbar_book_%s", strtolower(getConfig('surfbar_pay_model'))), false, $content);
 }
 
 //