X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-payments.php;h=0f11f5fed2984351a16089fedc30a4388e14b462;hb=4f7df133f736da124e6f7bd02008b9093f736451;hp=4204e12df11964fbaf561d064874b0d270a6e22b;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/inc/modules/admin/what-payments.php b/inc/modules/admin/what-payments.php index 4204e12df1..0f11f5fed2 100644 --- a/inc/modules/admin/what-payments.php +++ b/inc/modules/admin/what-payments.php @@ -1,7 +1,7 @@ $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"); - } + 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 'del': + case 'delete': foreach (postRequestElement('id') as $id => $value) { - addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`='".$id."' LIMIT 1"); - } + addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=" . bigintval($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'); - $content = "".SETTINGS_SAVED.""; - } else { - // Nothing has changed! - $content = "{--SETTINGS_NOT_SAVED--}"; - } + + // Purge cache + rebuildCache('payments', 'payments'); + + // Change message + $content = '{--SETTINGS_SAVED--}'; + } // END - if // Output template - loadTemplate('admin_settings_saved', false, $content); -} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) { + displayMessage($content); +} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) { // Delete entries here - $OUT = ''; $SW = 2; + $OUT = ''; 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); + $result = SQL_QUERY_ESC("SELECT `id`, `time`, `mail_title` 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, - ); + // Free result + SQL_FREERESULT($result); // Load row template and switch colors - $OUT .= loadTemplate('admin_del_payments_row', true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_delete_payments_row', TRUE, $content); + } // END - foreach // Load main template - loadTemplate('admin_del_payments', false, $OUT); -} elseif ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) { + loadTemplate('admin_delete_payments', FALSE, $OUT); +} elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries - $OUT = ''; $SW = 2; + $OUT = ''; 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); + $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 .= loadTemplate('admin_edit_payments_row', true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_edit_payments_row', TRUE, $content); + } // END - foreach // Load main template - loadTemplate('admin_edit_payments', false, $OUT); + 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; + // Referral levels + $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 referral levels editable and deletable + $OUT = ''; // 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; - } + $OUT .= loadTemplate('admin_list_payments_row', TRUE, $content); + } // END - switch // Free memory SQL_FREERESULT($result); // Load main template - loadTemplate('admin_list_payments', false, $OUT); - } + loadTemplate('admin_list_payments', FALSE, $OUT); + } // END - if - // Form for adding new referal levels + // Form for adding new referral levels loadTemplate('admin_add_payment'); }