X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-payments.php;h=4204e12df11964fbaf561d064874b0d270a6e22b;hb=996586caead345147b60216d2f4325b5f57a9874;hp=adbc2e95ab3d57e8dd4f21b0a41049ecb7703905;hpb=e72031bcfdcd8e91f62bec6cc88f36b7a11d9221;p=mailer.git diff --git a/inc/modules/admin/what-payments.php b/inc/modules/admin/what-payments.php index adbc2e95ab..4204e12df1 100644 --- a/inc/modules/admin/what-payments.php +++ b/inc/modules/admin/what-payments.php @@ -8,11 +8,16 @@ * -------------------------------------------------------------------- * * Short description : Payments (points) for confirmed mails * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Verguetungen fuer bestaetigte Mails * + * Kurzbeschreibung : Verguetungen fuer bestätigte Mails * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,51 +37,49 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +addMenuDescription('admin', __FILE__); -if (((!REQUEST_ISSET_POST(('t_wait'))) || (!REQUEST_ISSET_POST(('payment')))) && (REQUEST_ISSET_GET(('do'))) && (REQUEST_GET('do') == "add")) { - REQUEST_UNSET_POST('ok'); +if (((!isPostRequestElementSet(('t_wait'))) || (!isPostRequestElementSet(('payment')))) && (isGetRequestElementSet('do')) && (getRequestElement('do') == 'add')) { + unsetPostRequestElement('ok'); } -if (IS_FORM_SENT()) { - $SQL = array(); - switch (REQUEST_GET('do')) { - case "add": - ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_payments` (time, payment, mail_title, price) VALUES ('".REQUEST_POST('t_wait')."','".REQUEST_POST('payment')."','".REQUEST_POST('title')."','".REQUEST_POST('price')."')"); - $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_payments` WHERE time='%s' LIMIT 1", - array(REQUEST_POST('t_wait')), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) { - // Re-init the array here - INIT_SQLS(); - - // Free memory - SQL_FREERESULT($result); - } - break; - - case "edit": - foreach (REQUEST_POST('time') as $id => $value) { - ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_payments` SET time='".$value."', payment='".REQUEST_POST('pay', $id)."', price='".REQUEST_POST('price', $id)."', mail_title='".REQUEST_POST('title', $id)."' WHERE id='".$id."' LIMIT 1"); - } - break; - - case "del": - foreach (REQUEST_POST('id') as $id => $value) { - ADD_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_payments` WHERE id='".$id."' LIMIT 1"); - } - break; +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')."')"); + $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_payments` WHERE time='%s' LIMIT 1", + array(postRequestElement('t_wait')), __FILE__, __LINE__); + if (SQL_NUMROWS($result) == 1) { + // Re-init the array here + initSqls(); + + // Free memory + SQL_FREERESULT($result); + } + break; + + case 'edit': + foreach (postRequestElement('time') as $id => $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"); + } + break; + + case 'del': + foreach (postRequestElement('id') as $id => $value) { + addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`='".$id."' LIMIT 1"); + } + break; } // Save settings - if (COUNT_SQLS() > 0) { + if (countSqls() > 0) { // Run all queries - RUN_FILTER('run_sqls', array('dry_run' => false)); + runFilterChain('run_sqls'); $content = "".SETTINGS_SAVED.""; } else { // Nothing has changed! @@ -84,13 +87,13 @@ if (IS_FORM_SENT()) { } // Output template - LOAD_TEMPLATE("admin_settings_saved", false, $content); -} elseif ((REQUEST_ISSET_POST(('del'))) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) { + loadTemplate('admin_settings_saved', false, $content); +} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) { // Delete entries here - $SW = 2; $OUT = ""; - foreach (REQUEST_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__); + $OUT = ''; $SW = 2; + 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); @@ -103,19 +106,18 @@ if (IS_FORM_SENT()) { ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_del_payments_row", true, $content); + $OUT .= loadTemplate('admin_del_payments_row', true, $content); $SW = 3 - $SW; } - define('__PAYMENT_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_del_payments"); -} elseif ((REQUEST_ISSET_POST(('edit'))) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) { + loadTemplate('admin_del_payments', false, $OUT); +} elseif ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) { // Edit entries - $SW = 2; $OUT = ""; - foreach (REQUEST_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__); + $OUT = ''; $SW = 2; + 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); @@ -130,51 +132,47 @@ if (IS_FORM_SENT()) { ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_edit_payments_row", true, $content); + $OUT .= loadTemplate('admin_edit_payments_row', true, $content); $SW = 3 - $SW; } - define('__PAYMENT_ROWS', $OUT); // 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__); + $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 = ""; + $OUT = ''; $SW = 2; // List already existing categories for editing - while (list($id, $time, $pay, $title, $price) = SQL_FETCHROW($result)) { - $pay = TRANSLATE_COMMA($pay); - $price = TRANSLATE_COMMA($price); - + 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' => $id, - 'time' => $time, - 'title' => $title, - 'pay' => $pay, - 'price' => $price, + '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 .= LOAD_TEMPLATE("admin_payments_list_row", true, $content); + $OUT .= loadTemplate('admin_payments_list_row', true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); - define('__PAYMENT_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_list_payments"); + loadTemplate('admin_list_payments', false, $OUT); } // Form for adding new referal levels - LOAD_TEMPLATE("admin_add_payment"); + loadTemplate('admin_add_payment'); } -// +// [EOF] ?>