X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-payments.php;h=8de522a367b76e695a5a096bbb7edf2b858bfd7b;hp=f3f6eb75590ebf195de6953f65dc58ebfeb5f5e2;hb=0715fa7aa8e5e70bcf1d957fb09ae655c3896c4e;hpb=6d348813375b48ecd6344d52ec2b821046c353a9 diff --git a/inc/modules/admin/what-payments.php b/inc/modules/admin/what-payments.php index f3f6eb7559..8de522a367 100644 --- a/inc/modules/admin/what-payments.php +++ b/inc/modules/admin/what-payments.php @@ -1,14 +1,14 @@ $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; - } +addMenuDescription('admin', __FILE__); + +if (((!isPostRequestParameterSet(('t_wait'))) || (!isPostRequestParameterSet(('payment')))) && (isGetRequestParameterSet('do')) && (getRequestParameter('do') == 'add')) { + unsetPostRequestParameter('ok'); +} // END - if + +if (isFormSent()) { + switch (getRequestParameter('do')) { + case 'add': + addSql("INSERT INTO `{?_MYSQL_PREFIX?}_payments` (time, payment, mail_title, price) VALUES ('".postRequestParameter('t_wait')."','".postRequestParameter('payment')."','".postRequestParameter('title')."','".postRequestParameter('price')."')"); + $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_payments` WHERE time='%s' LIMIT 1", + array(postRequestParameter('t_wait')), __FILE__, __LINE__); + if (SQL_NUMROWS($result) == 1) { + // Re-init the array here + initSqls(); + + // Free memory + SQL_FREERESULT($result); + } + break; + + case 'edit': + foreach (postRequestParameter('time') as $id => $value) { + addSql("UPDATE `{?_MYSQL_PREFIX?}_payments` SET `time`='" . $value . "', `payment`='".postRequestParameter('pay', $id)."', price='".postRequestParameter('price', $id)."', mail_title='".postRequestParameter('title', $id)."' WHERE `id`='".$id."' LIMIT 1"); + } + break; + + case 'del': + foreach (postRequestParameter('id') as $id => $value) { + addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=" . bigintval($id) . " LIMIT 1"); + } + break; + } // END - switch // Save settings - if (COUNT_SQLS() > 0) { + if (countSqls() > 0) { // Run all queries runFilterChain('run_sqls'); - $content = "".SETTINGS_SAVED.""; + $content = '{--SETTINGS_SAVED--}'; } else { // Nothing has changed! - $content = "{--SETTINGS_NOT_SAVED--}"; + $content = '{--SETTINGS_NOT_SAVED--}'; } // Output template - LOAD_TEMPLATE("admin_settings_saved", false, $content); -} elseif ((REQUEST_ISSET_POST('del')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) { + loadTemplate('admin_settings_saved', false, $content); +} elseif ((isFormSent('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__); + $OUT = ''; $SW = 2; + foreach (postRequestParameter('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); @@ -107,19 +107,18 @@ if (IS_FORM_SENT()) { ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_del_payments_row", true, $content); + $OUT .= loadTemplate('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')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) { + loadTemplate('admin_del_payments', false, $OUT); +} elseif ((isFormSent('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__); + $OUT = ''; $SW = 2; + foreach (postRequestParameter('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); @@ -134,19 +133,18 @@ if (IS_FORM_SENT()) { ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_edit_payments_row", true, $content); + $OUT .= loadTemplate('admin_edit_payments_row', true, $content); $SW = 3 - $SW; } - define('__PAYMENT_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_edit_payments"); + 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__); + $result = SQL_QUERY("SELECT `id`, `time`, `payment`, `mail_title`, `price` FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `time` ASC", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Make referal levels editable and deletable - $OUT = ""; $SW = 2; + $OUT = ''; $SW = 2; // List already existing categories for editing while ($content = SQL_FETCHARRAY($result)) { @@ -157,26 +155,25 @@ if (IS_FORM_SENT()) { 'id' => $content['id'], 'time' => $content['time'], 'title' => $content['mail_title'], - 'pay' => TRANSLATE_COMMA($content['payment']), - 'price' => TRANSLATE_COMMA($content['price']) + 'pay' => translateComma($content['payment']), + 'price' => translateComma($content['price']) ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_payments_list_row", true, $content); + $OUT .= loadTemplate('admin_payments_list_row', true, $content); $SW = 3 - $SW; - } + } // END - switch // Free memory SQL_FREERESULT($result); - define('__PAYMENT_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_list_payments"); - } + loadTemplate('admin_list_payments', false, $OUT); + } // END - if // Form for adding new referal levels - LOAD_TEMPLATE("admin_add_payment"); + loadTemplate('admin_add_payment'); } -// +// [EOF] ?>