X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_points.php;h=53cbc18472f81738df2793b05152e057a2391392;hp=6be930611ab19b57a16f55b809e5087dfa641672;hb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;hpb=50b91687d7e7201f6c596a9ad40e8ff35c995074 diff --git a/inc/modules/admin/what-config_points.php b/inc/modules/admin/what-config_points.php index 6be930611a..53cbc18472 100644 --- a/inc/modules/admin/what-config_points.php +++ b/inc/modules/admin/what-config_points.php @@ -17,7 +17,7 @@ * 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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,72 +37,71 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); } // Add description as navigation point -ADD_DESCR('admin', __FILE__); +addMenuDescription('admin', __FILE__); // Init variables $message = ''; // Is the 'sub' parameter set? -if (REQUEST_ISSET_GET('sub')) { +if (isGetRequestElementSet('sub')) { // Yes, then do some sanity-checks - switch (REQUEST_GET('sub')) { + switch (getRequestElement('sub')) { case 'points': - if ((!REQUEST_ISSET_POST(('points_register'))) || (!REQUEST_ISSET_POST(('points_ref')))) { - REQUEST_UNSET_POST('ok'); + if ((!isPostRequestElementSet(('points_register'))) || (!isPostRequestElementSet(('points_ref')))) { + unsetPostRequestElement('ok'); } break; case 'ref': - if (REQUEST_ISSET_GET('do')) { - if (((!REQUEST_ISSET_POST(('lvl'))) || (!REQUEST_ISSET_POST(('perc')))) && (REQUEST_GET('do') == 'add')) { - REQUEST_UNSET_POST('ok'); + if (isGetRequestElementSet('do')) { + if (((!isPostRequestElementSet(('level'))) || (!isPostRequestElementSet(('perc')))) && (getRequestElement('do') == 'add')) { + unsetPostRequestElement('ok'); } } break; } } else { // Display overview - REQUEST_SET_GET('sub', 'overview'); + setRequestGetElement('sub', 'overview'); } if (isFormSent()) { - INIT_SQLS(); - switch (REQUEST_GET('sub')) { + initSqls(); + switch (getRequestElement('sub')) { case 'points': - updateConfiguration(array('points_register', 'points_ref'), array(REQUEST_POST('points_register'), REQUEST_POST('points_ref'))); + updateConfiguration(array('points_register', 'points_ref'), array(postRequestElement('points_register'), postRequestElement('points_ref'))); break; case 'ref': - switch (REQUEST_GET('do')) + switch (getRequestElement('do')) { case 'add': - ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_refdepths` (level, percents) VALUES ('".REQUEST_POST('lvl')."','".REQUEST_POST('perc')."')"); + addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (level, percents) VALUES ('".postRequestElement('level')."','".postRequestElement('perc')."')"); break; case 'edit': // Change entries - foreach (REQUEST_POST('lvl') as $id => $value) { + foreach (postRequestElement('level') as $id => $value) { // Secure ID $id = bigintval($id); // Revert german commata - REQUEST_SET_POST('perc', array($id => convertCommaToDot(REQUEST_POST('perc', $id)))); + setRequestPostElement('perc', array($id => convertCommaToDot(postRequestElement('perc', $id)))); // Update entry - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_refdepths` SET level='%s', percents='%s' WHERE `id`=%s LIMIT 1", - array(bigintval($value), REQUEST_POST('perc', $id), $id), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refdepths` SET level='%s', percents='%s' WHERE `id`=%s LIMIT 1", + array(bigintval($value), postRequestElement('perc', $id), $id), __FILE__, __LINE__); } $message = getMessage('REF_DEPTHS_SAVED'); break; case 'del': - foreach (REQUEST_POST('id') as $id => $value) { - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_refdepths` WHERE `id`=%s LIMIT 1", + 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'); @@ -110,38 +109,38 @@ if (isFormSent()) { } // Update cache file - if (GET_EXT_VERSION('cache') >= '0.1.2') { - if ($GLOBALS['cache_instance']->loadCacheFile("refdepths")) $GLOBALS['cache_instance']->destroyCacheFile(); + if (getExtensionVersion('cache') >= '0.1.2') { + if ($GLOBALS['cache_instance']->loadCacheFile('refdepths')) $GLOBALS['cache_instance']->removeCacheFile(); } break; - case "settings": - $REF = bigintval(REQUEST_POST('ref_payout')); - updateConfiguration( - array('allow_direct_pay', 'reg_points_mode', 'ref_payout'), - array(REQUEST_POST('allow_direct_pay'), REQUEST_POST('reg_points_mode'), $REF) - ); - if ((getConfig('ref_payout') == 0) && (REQUEST_POST('ref_payout') > 0)) { - // Update account's ref_payout for "must-confirm" - ADD_SQL(sprintf("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `ref_payout`=(%s - `mails_confirmed`) + 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) + ); + if ((getConfig('ref_payout') == 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) && (REQUEST_POST('ref_payout') == 0)) { - // Update account's ref_payout for "not-must-confirm" - ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `ref_payout`=0 WHERE `ref_payout` > 0"); - ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET `points`=`points`+`locked_points` WHERE `locked_points` > 0"); - ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET `locked_points`=0 WHERE `locked_points` > 0"); - } - break; + } elseif ((getConfig('ref_payout') > 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"); + 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; } - if ((IS_SQLS_VALID()) && (IS_SQLS_VALID())) { - if (strpos($GLOBALS['sqls'][0], "INSERT") > -1) { - $result = SQL_QUERY_ESC("SELECT `id` FROM `{!_MYSQL_PREFIX!}_refdepths` WHERE level='%s' LIMIT 1", - array(bigintval(REQUEST_POST('lvl'))), __FILE__, __LINE__); + 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 - if (COUNT_SQLS() > 0) { + if (countSqls() > 0) { // Run all SQL commands runFilterChain('run_sqls'); @@ -149,109 +148,91 @@ WHERE `mails_confirmed` < %s", $REF, $REF)); $message = getMessage('SETTINGS_SAVED'); // Destroy config cache file here... - rebuildCacheFiles("config", "config"); + rebuildCacheFile('config', 'config'); } else { // Prepare failed-message $message = "{--SETTINGS_NOT_SAVED--}"; } // Remove SQL queries - UNSET_SQLS(); + unsetSqls(); } // Shall we display a message? if (!empty($message)) { // When do so... - LOAD_TEMPLATE('admin_settings_saved', false, $message); + loadTemplate('admin_settings_saved', false, $message); } -} elseif (REQUEST_GET('sub') == "settings") { +} 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; - } + 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 - 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'))); + 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 - LOAD_TEMPLATE("admin_config_point_settings"); -} elseif (REQUEST_GET('sub') == "ref") { + loadTemplate('admin_config_point_settings', false, $content); +} elseif (getRequestElement('sub') == 'ref') { // 12 3 32 2 3 32 2 3 4 43 21 - if ((REQUEST_ISSET_POST('del')) && (REQUEST_ISSET_POST('sel')) && (countPostSelection() > 0)) { + if ((isPostRequestElementSet('del')) && (isPostRequestElementSet('sel')) && (countPostSelection() > 0)) { // Delete entries $OUT = ''; $SW = 2; - foreach (REQUEST_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); + foreach (postRequestElement('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__); + $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); // Prepare data for the row template $content = array( - 'sw' => $SW, - 'id' => $id, - 'lvl' => $lvl, - 'per' => translateComma($perc), + 'sw' => $SW, + 'id' => $id, + 'level' => $content['level'], + 'percents' => translateComma($content['percents']), ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_points_del_row", true, $content); + $OUT .= loadTemplate('admin_points_del_row', true, $content); $SW = 3 - $SW; } - define('__LEVEL_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_points_del"); - } elseif ((REQUEST_ISSET_POST('edit')) && (REQUEST_ISSET_POST('sel')) && (countPostSelection() > 0)) { + loadTemplate('admin_points_del', false, $OUT); + } elseif ((isPostRequestElementSet('edit')) && (isPostRequestElementSet('sel')) && (countPostSelection() > 0)) { // Edit entries $OUT = ''; $SW = 2; - foreach (REQUEST_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); + foreach (postRequestElement('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__); + $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); // Prepare data for the row template $content = array( - 'sw' => $SW, - 'id' => $id, - 'lvl' => $lvl, - 'per' => translateComma($perc), + 'sw' => $SW, + 'id' => $id, + 'level' => $content['level'], + 'percents' => translateComma($contentp['percents']), ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_points_edit_row", true, $content); + $OUT .= loadTemplate('admin_points_edit_row', true, $content); $SW = 3 - $SW; } - define('__LEVEL_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_points_edit"); + 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__); + $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; @@ -259,41 +240,31 @@ WHERE `mails_confirmed` < %s", $REF, $REF)); // List already existing categories for editing while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the row template - // @TODO Rewritings: lvl->level, per->percents in template - $content = array( - 'sw' => $SW, - 'id' => $content['id'], - 'lvl' => $content['level'], - 'per' => translateComma($content['percents']), - ); + $content['sw'] = $SW; + $content['percents'] = translateComma($content['percents']); // Load row template and switch color - $OUT .= LOAD_TEMPLATE('admin_points_row', true, $content); + $OUT .= loadTemplate('admin_points_row', true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); - define('__LEVEL_ROWS', $OUT); // Load main template - LOAD_TEMPLATE('admin_points'); + loadTemplate('admin_points', false, $OUT); } // Form for adding new referal levels - LOAD_TEMPLATE('admin_add_reflvl'); + loadTemplate('admin_add_reflevel'); } -} elseif (REQUEST_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'); +} 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] ?>