X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-edit_sponsor.php;h=cf61c57c5851a020b3a590c50d29b32d2fdd7249;hb=c9a5bbe818b2dbcf8e8d5774fb25f08c40c92bd8;hp=27b3978a2112c8bc9a38ed928e0b70cc22ce8db5;hpb=544aa3fb48613160f812515673e64c46d18d2e1d;p=mailer.git diff --git a/inc/modules/admin/what-edit_sponsor.php b/inc/modules/admin/what-edit_sponsor.php index 27b3978a21..cf61c57c58 100644 --- a/inc/modules/admin/what-edit_sponsor.php +++ b/inc/modules/admin/what-edit_sponsor.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * 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 * * it under the terms of the GNU General Public License as published by * @@ -37,13 +37,13 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { - die(); + exit(); } // END - if // Add description as navigation point addYouAreHereLink('admin', __FILE__); -if ((isGetRequestParameterSet('id')) && (isGetRequestParameterSet('mode'))) { +if ((isGetRequestElementSet('id')) && (isGetRequestElementSet('do'))) { // Check for selected sponsor $result_main = SQL_QUERY_ESC("SELECT `id`, `company`, `position`, `gender`, `surname`, `family`, @@ -55,7 +55,7 @@ FROM WHERE `id`=%s LIMIT 1", - array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__); + array(bigintval(getRequestElement('id'))), __FILE__, __LINE__); if (SQL_NUMROWS($result_main) == 1) { // Load sponsor details $content = SQL_FETCHARRAY($result_main); @@ -65,25 +65,25 @@ LIMIT 1", $content['warning_interval'] = createTimeSelections($content['warning_interval'], 'warning_interval', 'MWDh'); // Init variables here - $TPL = sprintf("admin_edit_sponsor_%s", getRequestParameter('mode')); + $TPL = sprintf("admin_edit_sponsor_%s", getRequestElement('do')); initSqls(); // Sponsor was found if ((isFormSent()) || (isFormSent('edit'))) { // Perform action on mode - switch (getRequestParameter('mode')) { + switch (getRequestElement('do')) { case 'add_points': // Add points - if (bigintval(postRequestParameter('points')) > 0) { + if (bigintval(postRequestElement('points')) > 0) { // Replace german decimal comma with computer's decimal dot - $points = bigintval(convertCommaToDot(postRequestParameter('points'))); + $points = bigintval(convertCommaToDot(postRequestElement('points'))); // Add points to account SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET `points_amount`=`points_amount`+%s WHERE `id`=%s LIMIT 1", - array($points, bigintval(getRequestParameter('id'))), __FILE__, __LINE__); + array($points, bigintval(getRequestElement('id'))), __FILE__, __LINE__); // Remember points /reason for the template $content['points'] = $points; - $content['reason'] = secureString(postRequestParameter('reason')); + $content['reason'] = postRequestElement('reason'); // Send email $message = loadEmailTemplate('sponsor_add_points', $content); @@ -96,17 +96,17 @@ LIMIT 1", break; case 'sub_points': // Subtract points - if (bigintval(postRequestParameter('points')) > 0) { + if (bigintval(postRequestElement('points')) > 0) { // Replace german decimal comma with computer's decimal dot - $points = bigintval(convertCommaToDot(postRequestParameter('points'))); + $points = bigintval(convertCommaToDot(postRequestElement('points'))); // Add points to account SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET `points_used`=`points_used`+%s WHERE `id`=%s LIMIT 1", - array($points, bigintval(getRequestParameter('id'))), __FILE__, __LINE__); + array($points, bigintval(getRequestElement('id'))), __FILE__, __LINE__); // Remember points /reason for the template $content['points'] = $points; - $content['reason'] = secureString(postRequestParameter('reason')); + $content['reason'] = postRequestElement('reason'); // Send email $message = loadEmailTemplate('sponsor_sub_points', $content); @@ -119,35 +119,34 @@ LIMIT 1", break; case 'edit': // Edit sponsor account - $PASS = true; - if ((postRequestParameter('pass1') != postRequestParameter('pass2')) || ((!isPostRequestParameterSet('pass1')) && (!isPostRequestParameterSet('pass1')))) { + $PASS = TRUE; + if ((postRequestElement('pass1') != postRequestElement('pass2')) || ((!isPostRequestElementSet('pass1')) && (!isPostRequestElementSet('pass1')))) { // Remove passwords - unsetPostRequestParameter('pass1'); - unsetPostRequestParameter('pass2'); - $PASS = false; + unsetPostRequestElement('pass1'); + unsetPostRequestElement('pass2'); + $PASS = FALSE; } // END - if // Convert time selection - $DATA = array(); $id = 'warning_interval_ye'; $skip = false; - convertSelectionsToEpocheTime(postRequestArray(), $DATA, $id, $skip); + convertSelectionsToEpocheTimeInPostData('warning_interval_ye'); // Save the sponsor handleSponsorRequest(postRequestArray()); // Convert some data for the email template - postRequestParameter('gender' , '{%pipe,translateComma=' . postRequestParameter('gender') . '%}'); - postRequestParameter('warning_interval', '{%pipe,createFancyTime=' . postRequestParameter('warning_interval') . '%}'); + postRequestElement('gender' , '{%pipe,translateGender=' . postRequestElement('gender') . '%}'); + postRequestElement('warning_interval', '{%pipe,createFancyTime=' . postRequestElement('warning_interval') . '%}'); - if ($PASS === false) setPostRequestParameter('pass1', '{--SPONSOR_PASS_UNCHANGED--}'); + if ($PASS === FALSE) setPostRequestElement('pass1', '{--SPONSOR_PASS_UNCHANGED--}'); // Load email template and send the mail away - $message = loadEmailTemplate('admin_sponsor_edit', postRequestArray(), false); - sendEmail(postRequestParameter('email'), '{--ADMIN_SPONSOR_EDIT_SUBJECT--}', $message); + $message = loadEmailTemplate('admin_sponsor_edit', postRequestArray(), FALSE); + sendEmail(postRequestElement('email'), '{--ADMIN_SPONSOR_EDIT_SUBJECT--}', $message); break; default: // Unknown mode - logDebugMessage(__FILE__, __LINE__, sprintf("Unknown mode %s detected.", getRequestParameter('mode'))); - $message = getMaskedMessage('ADMIN_SPONSOR_INVALID_MODE', getRequestParameter('mode')); + logDebugMessage(__FILE__, __LINE__, sprintf("Unknown mode %s detected.", getRequestElement('do'))); + $message = '{%message,ADMIN_SPONSOR_INVALID_MODE=' . getRequestElement('do') . '%}'; break; } @@ -160,14 +159,14 @@ LIMIT 1", $content['contact'] = '' . $content['surname'] . ' ' . $content['family'] . ''; // Load mode template - loadTemplate($TPL, false, $content); + loadTemplate($TPL, FALSE, $content); } else { // Template not found - displayMessage(getMaskedMessage('ADMIN_SPONSOR_MODUS_TPL_404', getRequestParameter('mode'))); + displayMessage('{%message,ADMIN_SPONSOR_MODUS_TPL_404', getRequestElement('do') . '%}'); } } else { // Sponsor not found - displayMessage(getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id')))); + displayMessage('{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestElement('id')) . '%}'); } // Free result