$value) { // Secure id $id = bigintval($id); // Revert german commata 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), convertCommaToDot(postRequestElement('percents', $id)), $id), __FILE__, __LINE__); } // END - foreach $message = '{--ADMIN_REFERRAL_DEPTHS_SAVED--}'; break; 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__); } // END - foreach $message = '{--ADMIN_REFERRAL_DEPTHS_DELETED--}'; break; } // END - switch // Update cache file rebuildCache('refdepths', 'refdepths'); break; 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"); } break; } // END - switch // 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 = '{--SETTINGS_SAVED--}'; // Destroy config cache file here... rebuildCache('config', 'config'); } // END - if // Remove SQL queries unsetSqls(); } // END - if // Shall we display a message? if (!empty($message)) { // When do so... displayMessage($message); } // END - if } elseif (getRequestElement('sub') == 'settings') { // Setup some settings like direct pay and so on // 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 loadTemplate('admin_config_point_settings', false, $content); } elseif (getRequestElement('sub') == 'ref') { // 12 3 32 2 3321 if ((isFormSent('delete')) && (ifPostContainsSelections())) { // Delete entries $OUT = ''; foreach (postRequestElement('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_delete_reflevel_row', true, $content); } // END - foreach // Load main template loadTemplate('admin_delete_reflevel', false, $OUT); } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries $OUT = ''; foreach (postRequestElement('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_edit_reflevel_row', true, $content); } // END - foreach // Load main template loadTemplate('admin_edit_reflevel', false, $OUT); } else { // Referral levels $result = SQL_QUERY("SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__); if (!SQL_HASZERONUMS($result)) { // Make referral levels editable and deletable $OUT = ''; // List already existing categories for editing while ($content = SQL_FETCHARRAY($result)) { // Load row template and switch color $OUT .= loadTemplate('admin_list_reflevel_row', true, $content); } // END - while // Free memory SQL_FREERESULT($result); // Load main template loadTemplate('admin_list_reflevel', false, $OUT); } // Form for adding new referral 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] ?>