X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-payments.php;h=338ae6f7d771c9062a8d733a951d716bf2e65fec;hb=101e5f161c0c367c022c9288398226a57f3919d7;hp=abd2e1fcf302810a27bb9a3480b7fe255871b0ec;hpb=5ab494ec65f8d912c075480312b15b15a5076ea4;p=mailer.git diff --git a/inc/modules/admin/what-payments.php b/inc/modules/admin/what-payments.php index abd2e1fcf3..338ae6f7d7 100644 --- a/inc/modules/admin/what-payments.php +++ b/inc/modules/admin/what-payments.php @@ -14,11 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); if (((!isPostRequestParameterSet('t_wait')) || (!isPostRequestParameterSet('payment'))) && (isGetRequestParameterSet('do')) && (getRequestParameter('do') == 'add')) { unsetPostRequestParameter('ok'); @@ -65,7 +63,7 @@ if (isFormSent()) { } // END - foreach break; - case 'del': + case 'delete': foreach (postRequestParameter('id') as $id => $value) { addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=" . bigintval($id) . " LIMIT 1"); } // END - foreach @@ -83,8 +81,8 @@ if (isFormSent()) { } // Output template - loadTemplate('admin_settings_saved', false, $content); -} elseif ((isFormSent('del')) && (ifPostContainsSelections())) { + displayMessage($content); +} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) { // Delete entries here $OUT = ''; foreach (postRequestParameter('sel') as $id => $value) { @@ -96,11 +94,11 @@ if (isFormSent()) { SQL_FREERESULT($result); // Load row template and switch colors - $OUT .= loadTemplate('admin_del_payments_row', true, $content); + $OUT .= loadTemplate('admin_delete_payments_row', true, $content); } // END - foreach // Load main template - loadTemplate('admin_del_payments', false, $OUT); + loadTemplate('admin_delete_payments', false, $OUT); } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries $OUT = ''; @@ -113,11 +111,11 @@ if (isFormSent()) { SQL_FREERESULT($result); // Load row template and switch colors - $OUT .= loadTemplate('form_submit_payments_row', true, $content); + $OUT .= loadTemplate('admin_edit_payments_row', true, $content); } // END - foreach // Load main template - loadTemplate('form_submit_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__);