X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-payments.php;h=71dad294d453508ec150b0d1cc3615d5c0a34720;hb=4b9887f734067dc52a1730468e25ba066036a3e1;hp=f744849d10830b516952b668564b6188b870918c;hpb=56156f6c4392510cdbe0eb4f2ccefc23b43e2672;p=mailer.git diff --git a/inc/modules/admin/what-payments.php b/inc/modules/admin/what-payments.php index f744849d10..71dad294d4 100644 --- a/inc/modules/admin/what-payments.php +++ b/inc/modules/admin/what-payments.php @@ -1,18 +1,24 @@ $value) { - $SQLs[] = "UPDATE "._MYSQL_PREFIX."_payments SET time='".$value."', payment='".$_POST['pay'][$id]."', price='".$_POST['price'][$id]."', mail_title='".$_POST['title'][$id]."' WHERE id='".$id."' LIMIT 1"; - } - break; - - case "del": - foreach ($_POST['id'] as $id => $value) { - $SQLs[] = "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')."')"); + if (countSumTotalData(postRequestParameter('t_wait'), 'payments', 'id', 'time', true) == 1) { + // Re-init the array here + initSqls(); + } // END - if + break; + + case 'edit': + foreach (postRequestParameter('time') as $id => $value) { + addSql("UPDATE `{?_MYSQL_PREFIX?}_payments` SET `time`='" . $value . "', `payment`='".postRequestParameter('payment', $id)."', price='".postRequestParameter('price', $id)."', mail_title='".postRequestParameter('mail_title', $id)."' WHERE `id`='".$id."' LIMIT 1"); + } // END - foreach + break; + + case 'del': + foreach (postRequestParameter('id') as $id => $value) { + addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=" . bigintval($id) . " LIMIT 1"); + } // END - foreach + break; + } // END - switch // Save settings - if (count($SQLs) > 0) { + if (countSqls() > 0) { // Run all queries - RUN_FILTER('run_sqls', array('dry_run' => false, 'sqls' => $SQLs)); - $content = "".SETTINGS_SAVED.""; + runFilterChain('run_sqls'); + $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 ((isset($_POST['del'])) && (SELECTION_COUNT($_POST['sel']) > 0)) { + loadTemplate('admin_settings_saved', false, $content); +} elseif ((isFormSent('del')) && (ifPostContainsSelections())) { // Delete entries here - $SW = 2; $OUT = ""; - foreach ($_POST['sel'] as $id => $value) { - $result = SQL_QUERY_ESC("SELECT time, mail_title FROM "._MYSQL_PREFIX."_payments WHERE id=%s LIMIT 1", + $OUT = ''; + foreach (postRequestParameter('sel') as $id => $value) { + $result = SQL_QUERY_ESC("SELECT `id`, `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); + $content = SQL_FETCHARRAY($result); - // Prepare array for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'time' => $time, - 'title' => $title, - ); + // Free result + SQL_FREERESULT($result); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_del_payments_row", true, $content); - $SW = 3 - $SW; - } - define('__PAYMENT_ROWS', $OUT); + $OUT .= loadTemplate('admin_del_payments_row', true, $content); + } // END - foreach // Load main template - LOAD_TEMPLATE("admin_del_payments"); -} elseif ((isset($_POST['edit'])) && (SELECTION_COUNT($_POST['sel']) > 0)) { + loadTemplate('admin_del_payments', false, $OUT); +} elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries - $SW = 2; $OUT = ""; - foreach ($_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); + $OUT = ''; + foreach (postRequestParameter('sel') as $id => $value) { + $result = SQL_QUERY_ESC("SELECT `id`, `time`, `payment`, `mail_title`, `price` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + $content = SQL_FETCHARRAY($result); - // Prepare array for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'time' => $time, - 'title' => $title, - 'pay' => $pay, - 'price' => $price, - ); + // Free result + SQL_FREERESULT($result); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_edit_payments_row", true, $content); - $SW = 3 - $SW; - } - define('__PAYMENT_ROWS', $OUT); + $OUT .= loadTemplate('admin_edit_payments_row', true, $content); + } // END - foreach // 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__); - if (SQL_NUMROWS($result) > 0) { + $result = SQL_QUERY("SELECT `id`, `time`, `payment`, `mail_title`, `price` FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `time` ASC", __FILE__, __LINE__); + if (!SQL_HASZERONUMS($result)) { // Make referal levels editable and deletable - $SW = 2; $OUT = ""; + $OUT = ''; // List already existing categories for editing - while (list($id, $time, $pay, $title, $price) = SQL_FETCHROW($result)) { - $pay = TRANSLATE_COMMA($pay); - $price = TRANSLATE_COMMA($price); - - // Prepare array for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'time' => $time, - 'title' => $title, - 'pay' => $pay, - 'price' => $price, - ); - + while ($content = SQL_FETCHARRAY($result)) { // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_payments_list_row", true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_list_payments_row', true, $content); + } // 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] ?>