$value) { // Secure id $id = bigintval($id); // Revert german commata setRequestPostElement('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'); break; case 'del': 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'); break; } // Update cache file if (getExtensionVersion('cache') >= '0.1.2') { if ($GLOBALS['cache_instance']->loadCacheFile('refdepths')) $GLOBALS['cache_instance']->removeCacheFile(); } 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) ); 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) && (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 ((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 (countSqls() > 0) { // Run all SQL commands runFilterChain('run_sqls'); // Entry saved... $message = getMessage('SETTINGS_SAVED'); // Destroy config cache file here... rebuildCacheFile('config', 'config'); } else { // Prepare failed-message $message = "{--SETTINGS_NOT_SAVED--}"; } // Remove SQL queries unsetSqls(); } // Shall we display a message? if (!empty($message)) { // When do so... loadTemplate('admin_settings_saved', false, $message); } } elseif (getRequestElement('sub') == 'settings') { // Setup some settings like direct pay and so on // Including new add-mode for one-time referal 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 (getRequestElement('sub') == 'ref') { // 12 3 32 2 3 32 2 3 4 43 21 if ((isPostRequestElementSet('del')) && (isPostRequestElementSet('sel')) && (countPostSelection() > 0)) { // Delete entries $OUT = ''; $SW = 2; 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, 'level' => $content['level'], 'percents' => translateComma($content['percents']), ); // Load row template and switch color $OUT .= loadTemplate('admin_points_del_row', true, $content); $SW = 3 - $SW; } // Load main template loadTemplate('admin_points_del', false, $OUT); } elseif ((isPostRequestElementSet('edit')) && (isPostRequestElementSet('sel')) && (countPostSelection() > 0)) { // Edit entries $OUT = ''; $SW = 2; 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, 'level' => $content['level'], 'percents' => translateComma($content['percents']), ); // Load row template and switch color $OUT .= loadTemplate('admin_points_edit_row', true, $content); $SW = 3 - $SW; } // 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_NUMROWS($result) > 0) { // Make referal levels editable and deletable $OUT = ''; $SW = 2; // 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; } // Free memory SQL_FREERESULT($result); // Load main template loadTemplate('admin_points', false, $OUT); } // Form for adding new referal levels loadTemplate('admin_add_reflevel'); } } elseif (getRequestElement('sub') == 'points') { // Load template loadTemplate('admin_config_sub_points'); } else { // Display selection box loadTemplate('admin_config_points'); } // [EOF] ?>