]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_points.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / modules / admin / what-config_points.php
index b50f23eb2c40ce206061e3b55e4fbbf1b3325b57..48e98ec1453b79e48ed34784a0d783815bec3c3f 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -55,61 +55,21 @@ if (isGetRequestElementSet('sub')) {
                                unsetPostRequestElement('ok');
                        } // END - if
                        break;
-
-               case 'ref':
-                       if (isGetRequestElementSet('do')) {
-                               if (((!isPostRequestElementSet('level')) || (!isPostRequestElementSet('percents'))) && (getRequestElement('do') == 'add')) {
-                                       unsetPostRequestElement('ok');
-                               }
-                       }
-                       break;
        } // END - switch
 } else {
        // Display overview
        setGetRequestElement('sub', 'overview');
 }
 
-if (isFormSent()) {
+// Is a form sent?
+if ((isFormSent('do_delete')) || (isFormSent('do_edit')) || (isFormSent('do_add')) || (isFormSent('save_config'))) {
+       // Init SQLs
        initSqls();
        switch (getRequestElement('sub')) {
                case 'points':
                        adminSaveSettingsFromPostData();
                        break;
 
-               case 'ref':
-                       switch (getRequestElement('do')) {
-                               case 'add':
-                                       addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".bigintval(postRequestElement('level'))."','".bigintval(postRequestElement('percents'))."')");
-                                       break;
-
-                               case 'edit': // Change entries
-                                       foreach (postRequestElement('level') as $id => $value) {
-                                               // Secure id
-                                               $id = bigintval($id);
-
-                                               // Revert german commata
-                                               setPostRequestElement('percents', array($id => convertCommaToDot(postRequestElement('percents', $id))));
-
-                                               // Update entry
-                                               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refdepths` SET `level`=%s,`percents`=%s WHERE `id`=%s LIMIT 1",
-                                                       array(bigintval($value), convertCommaToDot(postRequestElement('percents', $id)), $id), __FILE__, __LINE__);
-                                       } // END - foreach
-                                       $message = '{--ADMIN_REFERRAL_DEPTHS_SAVED--}';
-                                       break;
-
-                               case 'delete':
-                                       foreach (postRequestElement('id') as $id => $value) {
-                                               SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
-                                               array(bigintval($id)), __FILE__, __LINE__);
-                                       } // END - foreach
-                                       $message = '{--ADMIN_REFERRAL_DEPTHS_DELETED--}';
-                                       break;
-                       } // END - switch
-
-                       // Update cache file
-                       rebuildCache('refdepths', 'refdepths');
-                       break;
-
                case 'settings':
                        $REF = bigintval(postRequestElement('ref_payout'));
                        updateConfiguration(
@@ -170,61 +130,6 @@ WHERE
 
        // Load template
        loadTemplate('admin_config_point_settings', FALSE, $content);
-} elseif (getRequestElement('sub') == 'ref') {
-       // 12          3     32    2                        3321
-       if ((isFormSent('delete')) && (ifPostContainsSelections())) {
-               // Delete entries
-               $OUT = '';
-               foreach (postRequestElement('sel') as $id => $value) {
-                       $result = SQL_QUERY_ESC("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
-                               array(bigintval($id)), __FILE__, __LINE__);
-                       $content = SQL_FETCHARRAY($result);
-                       SQL_FREERESULT($result);
-
-                       // Load row template and switch color
-                       $OUT .= loadTemplate('admin_delete_reflevel_row', TRUE, $content);
-               } // END - foreach
-
-               // Load main template
-               loadTemplate('admin_delete_reflevel', FALSE, $OUT);
-       } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
-               // Edit entries
-               $OUT = '';
-               foreach (postRequestElement('sel') as $id => $value) {
-                       $result = SQL_QUERY_ESC("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
-                               array(bigintval($id)), __FILE__, __LINE__);
-                       $content = SQL_FETCHARRAY($result);
-                       SQL_FREERESULT($result);
-
-                       // Load row template and switch color
-                       $OUT .= loadTemplate('admin_edit_reflevel_row', TRUE, $content);
-               } // END - foreach
-
-               // Load main template
-               loadTemplate('admin_edit_reflevel', FALSE, $OUT);
-       } else {
-               // Referral levels
-               $result = SQL_QUERY("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__);
-               if (!SQL_HASZERONUMS($result)) {
-                       // Make referral levels editable and deletable
-                       $OUT = '';
-
-                       // List already existing categories for editing
-                       while ($content = SQL_FETCHARRAY($result)) {
-                               // Load row template and switch color
-                               $OUT .= loadTemplate('admin_list_reflevel_row', TRUE, $content);
-                       } // END - while
-
-                       // Free memory
-                       SQL_FREERESULT($result);
-
-                       // Load main template
-                       loadTemplate('admin_list_reflevel', FALSE, $OUT);
-               }
-
-               // Form for adding new referral levels
-               loadTemplate('admin_add_reflevel');
-       }
 } elseif (getRequestElement('sub') == 'points') {
        // Load template
        loadTemplate('admin_config_sub_points');