X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_points.php;h=48e98ec1453b79e48ed34784a0d783815bec3c3f;hp=57a98b110391eaa6f10ca0c88af4608a814811c8;hb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86;hpb=56156f6c4392510cdbe0eb4f2ccefc23b43e2672 diff --git a/inc/modules/admin/what-config_points.php b/inc/modules/admin/what-config_points.php index 57a98b1103..48e98ec145 100644 --- a/inc/modules/admin/what-config_points.php +++ b/inc/modules/admin/what-config_points.php @@ -1,7 +1,7 @@ $value) { - // Secure ID - $id = bigintval($id); - - // Revert german commata - $_POST['perc'][$id] = REVERT_COMMA($_POST['perc'][$id]); - - // Update entry - SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refdepths SET level='%s', percents='%s' WHERE id=%s LIMIT 1", - array(bigintval($value), $_POST['perc'][$id], $id), __FILE__, __LINE__); - } - $message = REF_DEPTHS_SAVED; +// 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 "del": - foreach ($_POST['id'] as $id => $value) { - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); + case 'settings': + $REF = bigintval(postRequestElement('ref_payout')); + updateConfiguration( + array('allow_direct_pay', 'ref_payout'), + array(postRequestElement('allow_direct_pay'), $REF) + ); + 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 ((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"); } - $message = REF_DEPTHS_DELETED; break; - } + } // END - switch - // Update cache file - if (GET_EXT_VERSION("cache") >= "0.1.2") { - if ($cacheInstance->loadCacheFile("refdepths")) $cacheInstance->destroyCacheFile(); - } - break; + // Is there an array? + if ((getRequestElement('sub') != 'points') && (isSqlsValid())) { + // Default is failed-message + $message = '{--SETTINGS_NOT_SAVED--}'; - case "settings": - $REF = bigintval($_POST['ref_payout']); - $SQLs[] = sprintf("UPDATE `"._MYSQL_PREFIX."_config` SET -allow_direct_pay='%s', -reg_points_mode='%s', -ref_payout='%s' -WHERE config=0 LIMIT 1", - $_POST['allow_direct_pay'], - $_POST['reg_points_mode'], - $REF - ); - if ((getConfig('ref_payout') == 0) && ($_POST['ref_payout'] > 0)) { - // Update account's ref_payout for "must-confirm" - $SQLs[] = sprintf("UPDATE `"._MYSQL_PREFIX."_user_data` SET ref_payout=(%s - mails_confirmed) -WHERE mails_confirmed < %s", $REF, $REF); - } elseif ((getConfig('ref_payout') > 0) && ($_POST['ref_payout'] == 0)) { - // Update account's ref_payout for "not-must-confirm" - $SQLs[] = "UPDATE `"._MYSQL_PREFIX."_user_data` SET ref_payout=0 WHERE ref_payout > 0"; - $SQLs[] = "UPDATE "._MYSQL_PREFIX."_user_points SET points=points+locked_points WHERE locked_points>0"; - $SQLs[] = "UPDATE "._MYSQL_PREFIX."_user_points SET locked_points=0 WHERE locked_points>0"; - } - break; - } - - if ((isset($SQLs)) && (is_array($SQLs)) && (!empty($SQLs[0]))) { - if (strpos($SQLs[0], "INSERT") > -1) { - $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_refdepths WHERE level='%s' LIMIT 1", - array(bigintval($_POST['lvl'])), __FILE__, __LINE__); - SQL_FREERESULT($result); - } // END - if - - if (count($SQLs) > 0) { + if (countSqls() > 0) { // Run all SQL commands - RUN_FILTER('run_sqls', array('dry_run' => false, 'sqls' => $SQLs)); + runFilterChain('run_sqls'); // Entry saved... - $message = SETTINGS_SAVED; + $message = '{--SETTINGS_SAVED--}'; // Destroy config cache file here... - REBUILD_CACHE("config", "config"); - } else { - // Prepare failed-message - $message = "".SETTINGS_NOT_SAVED.""; - } + rebuildCache('config', 'config'); + } // END - if // Remove SQL queries - unset($SQLs); - } + unsetSqls(); + } // END - if // Shall we display a message? if (!empty($message)) { // When do so... - LOAD_TEMPLATE("admin_settings_saved", false, $message); - } -} elseif ($_GET['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 - switch (getConfig('allow_direct_pay')) { - case "Y": - define('__DIRECT_Y', " checked=\"checked\""); - define('__DIRECT_N', ""); - break; - - case "N": - define('__DIRECT_Y', ""); - define('__DIRECT_N', " checked=\"checked\""); - break; - } - - // One-time referal bonus add-mode - switch (getConfig('reg_points_mode')) { - case "ref" : define('__MODE_REF', " checked=\"checked\""); define('__MODE_DIRECT', ""); break; - case "direct": define('__MODE_REF', ""); define('__MODE_DIRECT', " checked=\"checked\""); break; - } - - // Referal payout value - define('__REF_PAYOUT', round(getConfig('ref_payout'))); + // 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 // Load template - LOAD_TEMPLATE("admin_config_point_settings"); -} elseif ($_GET['sub'] == "ref") { - if ((isset($_POST['del'])) && (isset($_POST['sel'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0])))) { - // Delete entries - $SW = 2; $OUT = ""; - foreach ($_POST['sel'] as $id => $value) { - $result = SQL_QUERY_ESC("SELECT level, percents FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($lvl, $perc) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'lvl' => $lvl, - 'per' => TRANSLATE_COMMA($perc), - ); - - // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_points_del_row", true, $content); - $SW = 3 - $SW; - } - define('__LEVEL_ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_points_del"); - } elseif ((isset($_POST['edit'])) && (isset($_POST['sel'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0])))) { - // Edit entries - $SW = 2; $OUT = ""; - foreach ($_POST['sel'] as $id => $value) { - $result = SQL_QUERY_ESC("SELECT level, percents FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($lvl, $perc) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'lvl' => $lvl, - 'per' => TRANSLATE_COMMA($perc), - ); - - // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_points_edit_row", true, $content); - $SW = 3 - $SW; - } - define('__LEVEL_ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_points_edit"); - } else { - // Referal levels - $result = SQL_QUERY("SELECT id, level, percents FROM "._MYSQL_PREFIX."_refdepths ORDER BY level", __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) { - // Make referal levels editable and deletable - $SW = 2; $OUT = ""; - - // List already existing categories for editing - while (list($id, $lvl, $perc) = SQL_FETCHROW($result)) { - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'lvl' => $lvl, - 'per' => TRANSLATE_COMMA($perc), - ); - - // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_points_row", true, $content); - $SW = 3 - $SW; - } - - // Free memory - SQL_FREERESULT($result); - define('__LEVEL_ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_points"); - } - - // Form for adding new referal levels - LOAD_TEMPLATE("admin_add_reflvl"); - } -} elseif ($_GET['sub'] == "points") { - // First points for registration and other fixed points including new add-mode for one-time referal bonus... - define('P_REG_VALUE', getConfig('points_register')); - define('P_REF_VALUE', getConfig('points_ref')); - - // Load templates - LOAD_TEMPLATE("admin_config_sub_points"); + loadTemplate('admin_config_point_settings', FALSE, $content); +} elseif (getRequestElement('sub') == 'points') { + // Load template + loadTemplate('admin_config_sub_points'); } else { // Display selection box - LOAD_TEMPLATE("admin_config_points"); + loadTemplate('admin_config_points'); } -// +// [EOF] ?>