]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-refback.php
Re-added, now the right ones
[mailer.git] / inc / modules / member / what-refback.php
index 7bd83a4acded1617c7fd3e09689043ee9533d292..248b985bf74ef3aa52652e432ee0e6893205a621 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Refback-Einstellungen                            *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision:: 856                                                    $ *
+ * $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                  *
@@ -39,12 +44,12 @@ if (!defined('__SECURITY')) {
        // User is not logged in
        LOAD_URL("modules.php?module=index");
 } elseif ((!EXT_IS_ACTIVE("refback")) && (!IS_ADMIN())) {
-       addFatalMessage(EXTENSION_PROBLEM_EXT_INACTIVE, "refback");
+       addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "refback");
        return;
 }
 
 // Is the refback system enabled?
-if (getConfig('refback_enabled') == "N") {
+if (getConfig('refback_enabled') != "Y") {
        // Output message
        LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_REFBACK_DISABLED'));
        // Abort here
@@ -55,16 +60,16 @@ if (getConfig('refback_enabled') == "N") {
 ADD_DESCR("member", __FILE__);
 
 // Was the form submitted?
-if ((isset($_POST['edit'])) && (isset($_POST['id']))) {
+if ((REQUEST_ISSET_POST('edit')) && (REQUEST_ISSET_POST(('id')))) {
        // Okay, has the user entered some values?
-       if (isset($_POST['percents'])) {
+       if (REQUEST_ISSET_POST(('percents'))) {
                // Revert german commta for testing
-               $percents = REVERT_COMMA($_POST['percents']);
+               $percents = REVERT_COMMA(REQUEST_POST('percents'));
 
                // Validate percents
                if ((($percents >= getConfig('refback_min_perc')) || (round($percents) == 0)) && ($percents <= getConfig('refback_max_perc'))) {
                        // Change ref-back for this direct id
-                       $status = REFBACK_CHANGE_MEMBER_PERCENTS($_POST['id'], $_POST['percents']);
+                       $status = REFBACK_CHANGE_MEMBER_PERCENTS(REQUEST_POST('id'), REQUEST_POST('percents'));
 
                        // Check status
                        if (isset($status['ok'])) {
@@ -72,21 +77,20 @@ if ((isset($_POST['edit'])) && (isset($_POST['id']))) {
                                LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_REFBACK_DONE'));
                        } elseif (isset($status['message'])) {
                                // Something went wrong with error message
-                               LOAD_TEMPLATE("admin_settings_saved", false, sprintf(MEMBER_REFBACK_ERROR_MESSAGE, $status['message']));
+                               LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('MEMBER_REFBACK_ERROR_MESSAGE'), $status['message']));
                        } else {
                                // No message found
-                               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_REFBACK_ERROR_EMPTY_MESSAGE);
+                               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_REFBACK_ERROR_EMPTY_MESSAGE'));
                        }
                } else {
                        // Percents out-of-bounds ;-)
-                       LOAD_TEMPLATE("admin_settings_saved", false, sprintf(MEMBER_REFBACK_ERROR_OUT_OF_BOUNDS, getConfig('refback_min_perc'), getConfig('refback_max_perc')));
+                       LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('MEMBER_REFBACK_ERROR_OUT_OF_BOUNDS'), getConfig('refback_min_perc'), getConfig('refback_max_perc')));
                }
 
                // Insert line
-               OUTPUT_HTML("<br />");
        } else {
                // Read data from refback table
-               $content = GET_USER_REF_ENTRY($_POST['id']);
+               $content = GET_USER_REF_ENTRY(REQUEST_POST('id'));
 
                // Translate comma
                $content['refback'] = TRANSLATE_COMMA($content['refback']);
@@ -103,7 +107,7 @@ $result = SQL_QUERY_ESC("SELECT r.level, r.percents
 FROM `{!_MYSQL_PREFIX!}_refdepths` AS r
 WHERE r.level > 0
 ORDER BY r.level ASC",
-       array($GLOBALS['userid']), __FILE__, __LINE__);
+       array(getUserId()), __FILE__, __LINE__);
 
 // Are there some entries? (Shall be!)
 if (SQL_NUMROWS($result) > 0) {
@@ -116,7 +120,7 @@ if (SQL_NUMROWS($result) > 0) {
                $SW = 2;
 
                // Check for users ref in this level
-               foreach (GET_USER_REFS($GLOBALS['userid'], $content['level']) as $refRow) {
+               foreach (GET_USER_REFS(getUserId(), $content['level']) as $refRow) {
                        // Not-deleted account is default
                        $deleted = false;
                        if (is_null($refRow['status'])) $deleted = true;