$value) { ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_payments` SET time='".$value."', payment='".REQUEST_POST('pay', $id)."', price='".REQUEST_POST('price', $id)."', mail_title='".REQUEST_POST('title', $id)."' WHERE `id`='".$id."' LIMIT 1"); } break; case 'del': foreach (REQUEST_POST('id') as $id => $value) { ADD_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_payments` WHERE `id`='".$id."' LIMIT 1"); } break; } // Save settings if (COUNT_SQLS() > 0) { // Run all queries runFilterChain('run_sqls'); $content = "".SETTINGS_SAVED.""; } else { // Nothing has changed! $content = "{--SETTINGS_NOT_SAVED--}"; } // Output template LOAD_TEMPLATE('admin_settings_saved', false, $content); } elseif ((REQUEST_ISSET_POST('del')) && (countPostSelection() > 0)) { // Delete entries here $OUT = ''; $SW = 2; foreach (REQUEST_POST('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 .= LOAD_TEMPLATE("admin_del_payments_row", true, $content); $SW = 3 - $SW; } define('__PAYMENT_ROWS', $OUT); // Load main template LOAD_TEMPLATE("admin_del_payments"); } elseif ((REQUEST_ISSET_POST('edit')) && (countPostSelection() > 0)) { // Edit entries $OUT = ''; $SW = 2; foreach (REQUEST_POST('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 .= LOAD_TEMPLATE("admin_edit_payments_row", true, $content); $SW = 3 - $SW; } define('__PAYMENT_ROWS', $OUT); // Load main template LOAD_TEMPLATE("admin_edit_payments"); } 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 .= LOAD_TEMPLATE("admin_payments_list_row", true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); define('__PAYMENT_ROWS', $OUT); // Load main template LOAD_TEMPLATE("admin_list_payments"); } // Form for adding new referal levels LOAD_TEMPLATE("admin_add_payment"); } // ?>