X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-payments.php;h=0f11f5fed2984351a16089fedc30a4388e14b462;hb=5ab0d021f3e96722af5d96d2b9036430200c06cb;hp=0033e186b31090b0820d5982f27461903d38f9d2;hpb=20741b93fd58620af677a7f1039ffd16ea6ec689;p=mailer.git diff --git a/inc/modules/admin/what-payments.php b/inc/modules/admin/what-payments.php index 0033e186b3..0f11f5fed2 100644 --- a/inc/modules/admin/what-payments.php +++ b/inc/modules/admin/what-payments.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -50,8 +50,8 @@ if (((!isPostRequestElementSet('t_wait')) || (!isPostRequestElementSet('payment' if (isFormSent()) { switch (getRequestElement('do')) { case 'add': - addSql("INSERT INTO `{?_MYSQL_PREFIX?}_payments` (`time`,`payment`,`mail_title`,`price`) VALUES ('".postRequestElement('t_wait')."','".postRequestElement('payment')."','".postRequestElement('title')."','".postRequestElement('price')."')"); - if (countSumTotalData(postRequestElement('t_wait'), 'payments', 'id', 'time', true) == 1) { + addSql("INSERT INTO `{?_MYSQL_PREFIX?}_payments` (`time`, `payment`, `mail_title`, `price`) VALUES ('".postRequestElement('t_wait')."','".postRequestElement('payment')."','".postRequestElement('title')."','".postRequestElement('price')."')"); + if (countSumTotalData(postRequestElement('t_wait'), 'payments', 'id', 'time', TRUE) == 1) { // Re-init the array here initSqls(); } // END - if @@ -59,7 +59,7 @@ if (isFormSent()) { case 'edit': foreach (postRequestElement('time') as $id => $value) { - 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"); + 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; @@ -70,15 +70,20 @@ if (isFormSent()) { 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 displayMessage($content); @@ -86,7 +91,7 @@ if (isFormSent()) { // Delete entries here $OUT = ''; foreach (postRequestElement('sel') as $id => $value) { - $result = SQL_QUERY_ESC("SELECT `id`,`time`,`mail_title` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1", + $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); @@ -94,16 +99,16 @@ if (isFormSent()) { SQL_FREERESULT($result); // Load row template and switch colors - $OUT .= loadTemplate('admin_delete_payments_row', true, $content); + $OUT .= loadTemplate('admin_delete_payments_row', TRUE, $content); } // END - foreach // Load main template - loadTemplate('admin_delete_payments', false, $OUT); + loadTemplate('admin_delete_payments', FALSE, $OUT); } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries $OUT = ''; foreach (postRequestElement('sel') as $id => $value) { - $result = SQL_QUERY_ESC("SELECT `id`,`time`,`payment`,`mail_title`,`price` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1", + $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); @@ -111,32 +116,32 @@ if (isFormSent()) { SQL_FREERESULT($result); // Load row template and switch colors - $OUT .= loadTemplate('admin_edit_payments_row', true, $content); + $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` ASC", __FILE__, __LINE__); + // 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 referal levels editable and deletable + // Make referral levels editable and deletable $OUT = ''; // List already existing categories for editing while ($content = SQL_FETCHARRAY($result)) { // Load row template and switch colors - $OUT .= loadTemplate('admin_list_payments_row', true, $content); + $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'); }