X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-payments.php;h=4dc746ee8a953ceaf6ce7d43f8ef7bdf7daece9d;hp=b78d8b9465996193b526358887fa7ab19d31109f;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=357b2ca133fc1f89db74097955c366cb4bee6996 diff --git a/inc/modules/admin/what-payments.php b/inc/modules/admin/what-payments.php index b78d8b9465..4dc746ee8a 100644 --- a/inc/modules/admin/what-payments.php +++ b/inc/modules/admin/what-payments.php @@ -1,19 +1,23 @@ $value) - { - $SQL[] = "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) - { - $SQL[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_payments WHERE id='".$id."' LIMIT 1"; - } - break; - } - // Daten abspeichern - if ((count($SQL) > 0) || (!empty($SQL[0]))) - { - foreach ($SQL as $s) - { - if (!empty($s)) - { - // Only run non-empty strings - $result = SQL_QUERY(trim($s), __FILE__, __LINE__); - if (empty($content)) - { - if (SQL_AFFECTEDROWS() == 1) - { - $content = "".SETTINGS_SAVED.""; - } - else - { - $content = "".SETTINGS_NOT_SAVED.""; - } - } - } - } - } - else - { - $content = "".SETTINGS_NOT_SAVED.""; - } - LOAD_TEMPLATE("admin_settings_saved", false, $content); -} - elseif ((isset($_POST['del'])) && (SELECTION_COUNT($_POST['sel']) > 0)) -{ +// Add description as navigation point +addYouAreHereLink('admin', __FILE__); + +if (((!isPostRequestElementSet('t_wait')) || (!isPostRequestElementSet('payment'))) && (isGetRequestElementSet('do')) && (getRequestElement('do') == 'add')) { + unsetPostRequestElement('ok'); +} // END - if + +// Init SQL array +initSqls(); + +if (isFormSent()) { + switch (getRequestElement('do')) { + case 'add': + if (countSumTotalData(postRequestElement('t_wait'), 'payments', 'id', 'time', TRUE) == 0) { + addSql("INSERT INTO + `{?_MYSQL_PREFIX?}_payments` +( + `time`, + `payment`, + `mail_title`, + `price` +) VALUES ( + '" . postRequestElement('t_wait') . "', + '" . postRequestElement('payment') . "', + '" . postRequestElement('title') . "', + '" . postRequestElement('price') . "' +)"); + } // END - if + break; + + case 'edit': + foreach (postRequestElement('time') as $id => $value) { + // Secure id + $id = bigintval($id); + + // Add UPDATE + addSql("UPDATE + `{?_MYSQL_PREFIX?}_payments` +SET + `time`='" . $value . "', + `payment`='" . postRequestElement('payment', $id) . "', + `price`='" . postRequestElement('price', $id) . "', + `mail_title`='" . postRequestElement('mail_title', $id) . "' +WHERE + `id`='" . $id . "' +LIMIT 1"); + } // END - foreach + break; + + case 'delete': + foreach (postRequestElement('id') as $id => $value) { + // Secure id + $id = bigintval($id); + + // Add DELETE + addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=" . $id . " LIMIT 1"); + } // END - foreach + break; + } // END - switch + + // Nothing has changed by default + $content = '{--SETTINGS_NOT_SAVED--}'; + + // Save settings + if (countSqls() > 0) { + // Run all queries + runFilterChain('run_sqls'); + + // Purge cache + rebuildCache('payments', 'payments'); + + // Change message + $content = '{--SETTINGS_SAVED--}'; + } // END - if + + // Output template + displayMessage($content); +} elseif ((isFormSent('delete')) && (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", - 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, - ); + $OUT = ''; + foreach (postRequestElement('sel') as $id => $value) { + $result = sqlQueryEscaped("SELECT + `id`, + `time`, + `payment`, + `mail_title`, + `price` +FROM + `{?_MYSQL_PREFIX?}_payments` +WHERE + `id`=%s +LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + $content = sqlFetchArray($result); + + // Free result + sqlFreeResult($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_delete_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_delete_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); - - // Prepare array for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'time' => $time, - 'title' => $title, - 'pay' => $pay, - 'price' => $price, - ); + $OUT = ''; + foreach (postRequestElement('sel') as $id => $value) { + $result = sqlQueryEscaped("SELECT + `id`, + `time`, + `payment`, + `mail_title`, + `price` +FROM + `{?_MYSQL_PREFIX?}_payments` +WHERE + `id`=%s +LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + $content = sqlFetchArray($result); + + // Free result + sqlFreeResult($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"); -} - 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 - $SW = 2; $OUT = ""; + loadTemplate('admin_edit_payments', FALSE, $OUT); +} else { + // Referral levels + $result = sqlQuery("SELECT + `id`, + `time`, + `payment`, + `mail_title`, + `price` +FROM + `{?_MYSQL_PREFIX?}_payments` +ORDER BY + `time` ASC", __FILE__, __LINE__); + + if (!ifSqlHasZeroNumRows($result)) { + // Make referral levels editable and deletable + $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 = sqlFetchArray($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); + sqlFreeResult($result); // 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"); + // Form for adding new referral levels + loadTemplate('admin_add_payment'); } -// +// [EOF] ?>