]> 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 4126c7efa9f9a23e0d53f8783d040342288744a0..48e98ec1453b79e48ed34784a0d783815bec3c3f 100644 (file)
  * $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 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * 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 *
  * it under the terms of the GNU General Public License as published by *
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 // Init variables
 $message = '';
 
 // Is the 'sub' parameter set?
-if (isGetRequestParameterSet('sub')) {
+if (isGetRequestElementSet('sub')) {
        // Yes, then do some sanity-checks
-       switch (getRequestParameter('sub')) {
+       switch (getRequestElement('sub')) {
                case 'points':
-                       if ((!isPostRequestParameterSet('points_register')) || (!isPostRequestParameterSet('points_ref'))) {
-                               unsetPostRequestParameter('ok');
+                       if ((!isPostRequestElementSet('points_register')) || (!isPostRequestElementSet('points_ref'))) {
+                               unsetPostRequestElement('ok');
                        } // END - if
                        break;
-
-               case 'ref':
-                       if (isGetRequestParameterSet('do')) {
-                               if (((!isPostRequestParameterSet('level')) || (!isPostRequestParameterSet('percents'))) && (getRequestParameter('do') == 'add')) {
-                                       unsetPostRequestParameter('ok');
-                               }
-                       }
-                       break;
        } // END - switch
 } else {
        // Display overview
-       setGetRequestParameter('sub', '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 (getRequestParameter('sub')) {
+       switch (getRequestElement('sub')) {
                case 'points':
                        adminSaveSettingsFromPostData();
                        break;
 
-               case 'ref':
-                       switch (getRequestParameter('do'))
-                       {
-                               case 'add':
-                                       addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".postRequestParameter('level')."','".postRequestParameter('percents')."')");
-                                       break;
-
-                               case 'edit': // Change entries
-                                       foreach (postRequestParameter('level') as $id => $value) {
-                                               // Secure id
-                                               $id = bigintval($id);
-
-                                               // Revert german commata
-                                               setPostRequestParameter('percents', array($id => convertCommaToDot(postRequestParameter('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(postRequestParameter('percents', $id)), $id), __FILE__, __LINE__);
-                                       }
-                                       $message = '{--REF_DEPTHS_SAVED--}';
-                                       break;
-
-                               case 'del':
-                                       foreach (postRequestParameter('id') as $id => $value) {
-                                               SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
-                                               array(bigintval($id)), __FILE__, __LINE__);
-                                       }
-                                       $message = '{--REF_DEPTHS_DELETED--}';
-                                       break;
-                       }
-
-                       // Update cache file
-                       // @TODO Rewrite this to a filter
-                       if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
-                               if ($GLOBALS['cache_instance']->loadCacheFile('refdepths')) $GLOBALS['cache_instance']->removeCacheFile();
-                       } // END - if
-                       break;
-
                case 'settings':
-                       $REF = bigintval(postRequestParameter('ref_payout'));
+                       $REF = bigintval(postRequestElement('ref_payout'));
                        updateConfiguration(
-                               array('allow_direct_pay', 'reg_points_mode', 'ref_payout'),
-                               array(postRequestParameter('allow_direct_pay'), postRequestParameter('reg_points_mode'), $REF)
+                               array('allow_direct_pay', 'ref_payout'),
+                               array(postRequestElement('allow_direct_pay'), $REF)
                        );
-                       if ((getConfig('ref_payout') == '0') && (postRequestParameter('ref_payout') > 0)) {
+                       if ((getRefPayout() == '0') && (postRequestElement('ref_payout') > 0)) {
                                // Update account's ref_payout for "must-confirm"
-                               addSql(sprintf("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_payout`=(%s - `mails_confirmed`)
+                               addSql(sprintf("UPDATE
+       `{?_MYSQL_PREFIX?}_user_data`
+SET
+       `ref_payout`=(%s - `mails_confirmed`)
 WHERE
        `mails_confirmed` < %s", $REF, $REF));
-                       } elseif ((getConfig('ref_payout') > 0) && (postRequestParameter('ref_payout') == '0')) {
+                       } elseif ((getRefPayout() > 0) && (postRequestElement('ref_payout') == '0')) {
                                // Update account's ref_payout for "not-must-confirm"
                                addSql("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_payout`=0 WHERE `ref_payout` > 0");
+                               // @TODO Rewrite these two lines for new user_points columns (e.g. locked_order_points) with a filter
                                addSql("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `points`=`points`+`locked_points` WHERE `locked_points` > 0");
                                addSql("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `locked_points`=0 WHERE `locked_points` > 0");
                        }
                        break;
-       } // END - if
+       } // END - switch
 
-       if ((isSqlsValid()) && (isSqlsValid())) {
-               if (strpos($GLOBALS['sqls'][0], 'INSERT') > -1) {
-                       $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`='%s' LIMIT 1",
-                               array(bigintval(postRequestParameter('level'))), __FILE__, __LINE__);
-                       SQL_FREERESULT($result);
-               } // END - if
+       // Is there an array?
+       if ((getRequestElement('sub') != 'points') && (isSqlsValid())) {
+               // Default is failed-message
+               $message = '<span class="bad">{--SETTINGS_NOT_SAVED--}</span>';
 
                if (countSqls() > 0) {
                        // Run all SQL commands
@@ -152,96 +108,29 @@ WHERE
 
                        // Destroy config cache file here...
                        rebuildCache('config', 'config');
-               } else {
-                       // Prepare failed-message
-                       $message = '<span class="admin_failed">{--SETTINGS_NOT_SAVED--}</span>';
-               }
+               } // END - if
 
                // Remove SQL queries
                unsetSqls();
-       }
+       } // END - if
 
        // Shall we display a message?
        if (!empty($message)) {
                // When do so...
-               loadTemplate('admin_settings_saved', false, $message);
-       }
-} elseif (getRequestParameter('sub') == 'settings') {
+               displayMessage($message);
+       } // END - if
+} elseif (getRequestElement('sub') == 'settings') {
        // Setup some settings like direct pay and so on
-       // Including new add-mode for one-time referal bonus
+       // Including new add-mode for one-time referral bonus
        foreach (array('allow_direct_pay') as $entry) {
                $content[$entry . '_y'] = '';
                $content[$entry . '_n'] = '';
                $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
        } // END - foreach
 
-       // One-time referal bonus add-mode
-       foreach (array('reg_points_mode_ref','reg_points_mode_direct') as $entry) {
-               $content[$entry] = '';
-       } // END - if
-       $content['reg_points_mode_' . strtolower(getConfig('reg_points_mode'))] = ' checked="checked"';
-
        // Load template
-       loadTemplate('admin_config_point_settings', false, $content);
-} elseif (getRequestParameter('sub') == 'ref') {
-       // 12                  3     32    2                  3     32    2               3            4     43    21
-       if ((isFormSent('del')) && (isPostRequestParameterSet('sel')) && (ifPostContainsSelections())) {
-               // Delete entries
-               $OUT = '';
-               foreach (postRequestParameter('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_points_del_row', true, $content);
-               } // END - foreach
-
-               // Load main template
-               loadTemplate('admin_points_del', false, $OUT);
-       } elseif ((isFormSent('edit')) && (isPostRequestParameterSet('sel')) && (ifPostContainsSelections())) {
-               // Edit entries
-               $OUT = '';
-               foreach (postRequestParameter('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_points_edit_row', true, $content);
-               } // END - foreach
-
-               // Load main template
-               loadTemplate('admin_points_edit', false, $OUT);
-       } else {
-               // Referal levels
-               $result = SQL_QUERY("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__);
-               if (!SQL_HASZERONUMS($result)) {
-                       // Make referal levels editable and deletable
-                       $OUT = '';
-
-                       // List already existing categories for editing
-                       while ($content = SQL_FETCHARRAY($result)) {
-                               // Prepare data for the row template
-                               $content['percents'] = translateComma($content['percents']);
-
-                               // Load row template and switch color
-                               $OUT .= loadTemplate('admin_points_row', true, $content);
-                       } // END - while
-
-                       // Free memory
-                       SQL_FREERESULT($result);
-
-                       // Load main template
-                       loadTemplate('admin_points', false, $OUT);
-               }
-
-               // Form for adding new referal levels
-               loadTemplate('admin_add_reflevel');
-       }
-} elseif (getRequestParameter('sub') == 'points') {
+       loadTemplate('admin_config_point_settings', FALSE, $content);
+} elseif (getRequestElement('sub') == 'points') {
        // Load template
        loadTemplate('admin_config_sub_points');
 } else {