X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-edit_sponsor.php;h=93d133e3a1b5aad54b757318f316fcb42aa89979;hb=8ce32e702f3caa76b8d446902948e83e1e6854c8;hp=81d68c22284844be1c10787b320c9d846ab76505;hpb=27faaef0ff9ca5c5e240a1d0144485d59592548c;p=mailer.git diff --git a/inc/modules/admin/what-edit_sponsor.php b/inc/modules/admin/what-edit_sponsor.php index 81d68c2228..93d133e3a1 100644 --- a/inc/modules/admin/what-edit_sponsor.php +++ b/inc/modules/admin/what-edit_sponsor.php @@ -14,12 +14,10 @@ * $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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 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 * @@ -43,58 +41,49 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +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`, - `street_nr1`, `street_nr2`, `zip`, `city`, `country`, - `phone`, `fax`, `cell`, `email`, `url`, `tax_ident`, - `receive_warnings`, `warning_interval` + `id`,`company`,`position`,`gender`,`surname`,`family`, + `street_nr1`,`street_nr2`,`zip`,`city`,`country`, + `phone`,`fax`,`cell`,`email`,`url`,`tax_ident`, + `receive_warnings`,`warning_interval` FROM `{?_MYSQL_PREFIX?}_sponsor_data` 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); - // Prepare all data for the template - // Init gender - foreach (array('m', 'f', 'c') as $gender) { - $content['gender_' . $gender] = ''; - } // END - foreach - - // Check for gender selection - $content['gender_' . strtolower($content['gender'])] = ' selected="selected"'; - // Warning because low points $content['receive_warnings'] = addSelectionBox('yn', $content['receive_warnings'], 'receive_warning'); $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); @@ -107,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); @@ -131,40 +120,40 @@ LIMIT 1", case 'edit': // Edit sponsor account $PASS = true; - if ((postRequestParameter('pass1') != postRequestParameter('pass2')) || ((!isPostRequestParameterSet('pass1')) && (!isPostRequestParameterSet('pass1')))) { + if ((postRequestElement('pass1') != postRequestElement('pass2')) || ((!isPostRequestElementSet('pass1')) && (!isPostRequestElementSet('pass1')))) { // Remove passwords - unsetPostRequestParameter('pass1'); - unsetPostRequestParameter('pass2'); + unsetPostRequestElement('pass1'); + unsetPostRequestElement('pass2'); $PASS = false; } // END - if // Convert time selection - $DATA = array(); $id = 'warning_interval_ye'; $skip = false; - convertSelectionsToTimestamp(postRequestArray(), $DATA, $id, $skip); + $content = array(); $id = 'warning_interval_ye'; $skip = false; + convertSelectionsToEpocheTime(postRequestArray(), $content, $id, $skip); // Save the sponsor handleSponsorRequest(postRequestArray()); // Convert some data for the email template - postRequestParameter('gender' , translateGender(postRequestParameter('gender'))); - postRequestParameter('warning_interval', 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); + 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; } if (!empty($message)) { // Output message - loadTemplate('admin_settings_saved', false, $message); + displayMessage($message); } // END - if } elseif (isFileReadable(sprintf("%stemplates/%s/html/admin/%s.tpl", getPath(), getLanguage(), $TPL))) { // Create mailto link @@ -173,19 +162,19 @@ LIMIT 1", // Load mode template loadTemplate($TPL, false, $content); } else { - // Template not found! - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_MODUS_TPL_404', getRequestParameter('mode'))); + // Template not found + displayMessage('{%message,ADMIN_SPONSOR_MODUS_TPL_404', getRequestElement('do') . '%}'); } } else { - // Sponsor not found! - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id')))); + // Sponsor not found + displayMessage('{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestElement('id')) . '%}'); } // Free result SQL_FREERESULT($result_main); } else { // Not called by what-list_sponsor.php - loadTemplate('admin_settings_saved', false, '{--ADMIN_CALL_NOT_DIRECTLY--}'); + displayMessage('{--ADMIN_CALL_NOT_DIRECTLY--}'); } // [EOF]