$value) { addSql("UPDATE `{?_MYSQL_PREFIX?}_payments` SET time='".$value."', payment='".postRequestElement('pay', $id)."', price='".postRequestElement('price', $id)."', mail_title='".postRequestElement('title', $id)."' WHERE `id`='".$id."' LIMIT 1"); } break; case 'del': foreach (postRequestElement('id') as $id => $value) { addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`='".$id."' LIMIT 1"); } break; } // Save settings if (countSqls() > 0) { // Run all queries runFilterChain('run_sqls'); $content = "".SETTINGS_SAVED.""; } else { // Nothing has changed! $content = "{--SETTINGS_NOT_SAVED--}"; } // Output template loadTemplate('admin_settings_saved', false, $content); } elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) { // Delete entries here $OUT = ''; $SW = 2; foreach (postRequestElement('sel') as $id => $value) { $result = SQL_QUERY_ESC("SELECT time, mail_title FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); list($time, $title) = SQL_FETCHROW($result); SQL_FREERESULT($result); // Prepare array for the row template $content = array( 'sw' => $SW, 'id' => $id, 'time' => $time, 'title' => $title, ); // Load row template and switch colors $OUT .= loadTemplate('admin_del_payments_row', true, $content); $SW = 3 - $SW; } // Load main template loadTemplate('admin_del_payments', false, $OUT); } elseif ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) { // Edit entries $OUT = ''; $SW = 2; foreach (postRequestElement('sel') as $id => $value) { $result = SQL_QUERY_ESC("SELECT time, payment, mail_title, price FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); list($time, $pay, $title, $price) = SQL_FETCHROW($result); SQL_FREERESULT($result); // Prepare array for the row template $content = array( 'sw' => $SW, 'id' => $id, 'time' => $time, 'title' => $title, 'pay' => $pay, 'price' => $price, ); // Load row template and switch colors $OUT .= loadTemplate('admin_edit_payments_row', true, $content); $SW = 3 - $SW; } // Load main template loadTemplate('admin_edit_payments', false, $OUT); } else { // Referal levels $result = SQL_QUERY("SELECT id, time, payment, mail_title, price FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY time", __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 array for the row template // @TODO Rewritings: title->mail_title, pay->payment in template $content = array( 'sw' => $SW, 'id' => $content['id'], 'time' => $content['time'], 'title' => $content['mail_title'], 'pay' => translateComma($content['payment']), 'price' => translateComma($content['price']) ); // Load row template and switch colors $OUT .= loadTemplate('admin_payments_list_row', true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); // Load main template loadTemplate('admin_list_payments', false, $OUT); } // Form for adding new referal levels loadTemplate('admin_add_payment'); } // [EOF] ?>