X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_points.php;h=b50f23eb2c40ce206061e3b55e4fbbf1b3325b57;hb=e4b7f0c779ffca9c9317a18b303a0f7714e96176;hp=35f312eaf9c6f3b2d328159dd8d8708028054d59;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/modules/admin/what-config_points.php b/inc/modules/admin/what-config_points.php index 35f312eaf9..b50f23eb2c 100644 --- a/inc/modules/admin/what-config_points.php +++ b/inc/modules/admin/what-config_points.php @@ -14,11 +14,10 @@ * $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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 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 * @@ -39,10 +38,10 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { die(); -} +} // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Init variables $message = ''; @@ -52,36 +51,35 @@ if (isGetRequestElementSet('sub')) { // Yes, then do some sanity-checks switch (getRequestElement('sub')) { case 'points': - if ((!isPostRequestElementSet(('points_register'))) || (!isPostRequestElementSet(('points_ref')))) { + if ((!isPostRequestElementSet('points_register')) || (!isPostRequestElementSet('points_ref'))) { unsetPostRequestElement('ok'); - } + } // END - if break; case 'ref': if (isGetRequestElementSet('do')) { - if (((!isPostRequestElementSet(('level'))) || (!isPostRequestElementSet(('percents')))) && (getRequestElement('do') == 'add')) { + if (((!isPostRequestElementSet('level')) || (!isPostRequestElementSet('percents'))) && (getRequestElement('do') == 'add')) { unsetPostRequestElement('ok'); } } break; - } + } // END - switch } else { // Display overview - setRequestGetElement('sub', 'overview'); + setGetRequestElement('sub', 'overview'); } if (isFormSent()) { initSqls(); switch (getRequestElement('sub')) { case 'points': - updateConfiguration(array('points_register', 'points_ref'), array(postRequestElement('points_register'), postRequestElement('points_ref'))); + adminSaveSettingsFromPostData(); break; case 'ref': - switch (getRequestElement('do')) - { + switch (getRequestElement('do')) { case 'add': - addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".postRequestElement('level')."','".postRequestElement('percents')."')"); + addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".bigintval(postRequestElement('level'))."','".bigintval(postRequestElement('percents'))."')"); break; case 'edit': // Change entries @@ -90,172 +88,141 @@ if (isFormSent()) { $id = bigintval($id); // Revert german commata - setRequestPostElement('percents', array($id => convertCommaToDot(postRequestElement('percents', $id)))); + 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), postRequestElement('percents', $id), $id), __FILE__, __LINE__); - } - $message = getMessage('REF_DEPTHS_SAVED'); + 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 'del': + 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__); - } - $message = getMessage('REF_DEPTHS_DELETED'); + } // END - foreach + $message = '{--ADMIN_REFERRAL_DEPTHS_DELETED--}'; break; - } + } // END - switch // Update cache file - if (getExtensionVersion('cache') >= '0.1.2') { - if ($GLOBALS['cache_instance']->loadCacheFile('refdepths')) $GLOBALS['cache_instance']->removeCacheFile(); - } + rebuildCache('refdepths', 'refdepths'); break; case 'settings': $REF = bigintval(postRequestElement('ref_payout')); updateConfiguration( - array('allow_direct_pay', 'reg_points_mode', 'ref_payout'), - array(postRequestElement('allow_direct_pay'), postRequestElement('reg_points_mode'), $REF) + array('allow_direct_pay', 'ref_payout'), + array(postRequestElement('allow_direct_pay'), $REF) ); - if ((getConfig('ref_payout') == '0') && (postRequestElement('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`) -WHERE `mails_confirmed` < %s", $REF, $REF)); - } elseif ((getConfig('ref_payout') > 0) && (postRequestElement('ref_payout') == '0')) { + addSql(sprintf("UPDATE + `{?_MYSQL_PREFIX?}_user_data` +SET + `ref_payout`=(%s - `mails_confirmed`) +WHERE + `mails_confirmed` < %s", $REF, $REF)); + } 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 - 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(postRequestElement('level'))), __FILE__, __LINE__); - SQL_FREERESULT($result); - } // END - if + // Is there an array? + if ((getRequestElement('sub') != 'points') && (isSqlsValid())) { + // Default is failed-message + $message = '{--SETTINGS_NOT_SAVED--}'; if (countSqls() > 0) { // Run all SQL commands runFilterChain('run_sqls'); // Entry saved... - $message = getMessage('SETTINGS_SAVED'); + $message = '{--SETTINGS_SAVED--}'; // Destroy config cache file here... - rebuildCacheFile('config', 'config'); - } else { - // Prepare failed-message - $message = "{--SETTINGS_NOT_SAVED--}"; - } + rebuildCache('config', 'config'); + } // 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); - } + 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); + loadTemplate('admin_config_point_settings', FALSE, $content); } elseif (getRequestElement('sub') == 'ref') { - // 12 3 32 2 3 32 2 3 4 43 21 - if ((isPostRequestElementSet('del')) && (isPostRequestElementSet('sel')) && (countPostSelection() > 0)) { + // 12 3 32 2 3321 + if ((isFormSent('delete')) && (ifPostContainsSelections())) { // Delete entries - $OUT = ''; $SW = 2; + $OUT = ''; foreach (postRequestElement('sel') as $id => $value) { - $result = SQL_QUERY_ESC("SELECT `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", + $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); - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'level' => $content['level'], - 'percents' => translateComma($content['percents']), - ); - // Load row template and switch color - $OUT .= loadTemplate('admin_points_del_row', true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_delete_reflevel_row', TRUE, $content); + } // END - foreach // Load main template - loadTemplate('admin_points_del', false, $OUT); - } elseif ((isPostRequestElementSet('edit')) && (isPostRequestElementSet('sel')) && (countPostSelection() > 0)) { + loadTemplate('admin_delete_reflevel', FALSE, $OUT); + } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries - $OUT = ''; $SW = 2; + $OUT = ''; foreach (postRequestElement('sel') as $id => $value) { - $result = SQL_QUERY_ESC("SELECT `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", + $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); - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'level' => $content['level'], - 'percents' => translateComma($content['percents']), - ); - // Load row template and switch color - $OUT .= loadTemplate('admin_points_edit_row', true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_edit_reflevel_row', TRUE, $content); + } // END - foreach // Load main template - loadTemplate('admin_points_edit', false, $OUT); + loadTemplate('admin_edit_reflevel', FALSE, $OUT); } else { - // Referal levels + // Referral levels $result = SQL_QUERY("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) { - // Make referal levels editable and deletable - $OUT = ''; $SW = 2; + if (!SQL_HASZERONUMS($result)) { + // Make referral levels editable and deletable + $OUT = ''; // List already existing categories for editing while ($content = SQL_FETCHARRAY($result)) { - // Prepare data for the row template - $content['sw'] = $SW; - $content['percents'] = translateComma($content['percents']); - // Load row template and switch color - $OUT .= loadTemplate('admin_points_row', true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_list_reflevel_row', TRUE, $content); + } // END - while // Free memory SQL_FREERESULT($result); // Load main template - loadTemplate('admin_points', false, $OUT); + loadTemplate('admin_list_reflevel', FALSE, $OUT); } - // Form for adding new referal levels + // Form for adding new referral levels loadTemplate('admin_add_reflevel'); } } elseif (getRequestElement('sub') == 'points') {