X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-edit_sponsor.php;h=88bf548263f0a90078c59a999523425310f5b7a7;hb=e5dde615db05fb62ebe91bd1c030f40c9b91fe17;hp=c45ffdef0edf2fb003ec0c6f616f8d129239ae8d;hpb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;p=mailer.git diff --git a/inc/modules/admin/what-edit_sponsor.php b/inc/modules/admin/what-edit_sponsor.php index c45ffdef0e..88bf548263 100644 --- a/inc/modules/admin/what-edit_sponsor.php +++ b/inc/modules/admin/what-edit_sponsor.php @@ -18,6 +18,7 @@ * 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 * * * * This program is free software; you can redistribute it and/or modify * @@ -44,7 +45,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { // Add description as navigation point addMenuDescription('admin', __FILE__); -if ((isGetRequestElementSet('id')) && (isGetRequestElementSet('mode'))) { +if ((isGetRequestParameterSet('id')) && (isGetRequestParameterSet('mode'))) { // Check for selected sponsor $result_main = SQL_QUERY_ESC("SELECT `company`, `position`, `gender`, `surname`, `family`, @@ -56,14 +57,14 @@ FROM WHERE `id`='%s' LIMIT 1", - array(bigintval(getRequestElement('id'))), __FILE__, __LINE__); + array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__); if (SQL_NUMROWS($result_main) == 1) { // Load sponsor details $content = SQL_FETCHARRAY($result_main); // Prepare all data for the template // Sponsor's id - $content['id'] = bigintval(getRequestElement('id')); + $content['id'] = bigintval(getRequestParameter('id')); // Init gender foreach (array('m', 'f', 'c') as $gender) { @@ -75,68 +76,68 @@ LIMIT 1", // Warning because low points $content['receive_warnings'] = addSelectionBox('yn', $content['receive_warnings'], 'receive_warning'); - $content['interval'] = createTimeSelections($content['warning_interval'], 'warning_interval', 'MWDh'); + $content['warning_interval'] = createTimeSelections($content['warning_interval'], 'warning_interval', 'MWDh'); // Init variables here - $TPL = sprintf("admin_edit_sponsor_%s", getRequestElement('mode')); + $TPL = sprintf("admin_edit_sponsor_%s", getRequestParameter('mode')); initSqls(); // Sponsor was found - if ((isFormSent()) || (isPostRequestElementSet('edit'))) { + if ((isFormSent()) || (isFormSent('edit'))) { // Perform action on mode - switch (getRequestElement('mode')) { + switch (getRequestParameter('mode')) { case 'add_points': // Add points - if (bigintval(postRequestElement('points')) > 0) { + if (bigintval(postRequestParameter('points')) > 0) { // Replace german decimal comma with computer's decimal dot - $points = bigintval(convertCommaToDot(postRequestElement('points'))); + $points = bigintval(convertCommaToDot(postRequestParameter('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(getRequestElement('id'))), __FILE__, __LINE__); + array($points, bigintval(getRequestParameter('id'))), __FILE__, __LINE__); // Remember points /reason for the template $content['points'] = translateComma($points); - $content['reason'] = secureString(postRequestElement('reason')); + $content['reason'] = secureString(postRequestParameter('reason')); // Send email $message = loadEmailTemplate('sponsor_add_points', $content); - sendEmail($content['email'], getMessage('ADMIN_SPONSOR_ADD_POINTS_SUBJ'), $message); - $message = getMessage('ADMIN_SPONSOR_POINTS_ADDED'); + sendEmail($content['email'], '{--ADMIN_SPONSOR_ADD_POINTS_SUBJECT--}', $message); + $message = '{--ADMIN_SPONSOR_POINTS_ADDED--}'; } else { // No points entered to add! - $message = getMessage('ADMIN_SPONSPOR_NO_POINTS_TO_ADD'); + $message = '{--ADMIN_SPONSPOR_NO_POINTS_TO_ADD--}'; } break; case 'sub_points': // Subtract points - if (bigintval(postRequestElement('points')) > 0) { + if (bigintval(postRequestParameter('points')) > 0) { // Replace german decimal comma with computer's decimal dot - $points = bigintval(convertCommaToDot(postRequestElement('points'))); + $points = bigintval(convertCommaToDot(postRequestParameter('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(getRequestElement('id'))), __FILE__, __LINE__); + array($points, bigintval(getRequestParameter('id'))), __FILE__, __LINE__); // Remember points /reason for the template $content['points'] = translateComma($points); - $content['reason'] = secureString(postRequestElement('reason')); + $content['reason'] = secureString(postRequestParameter('reason')); // Send email $message = loadEmailTemplate('sponsor_sub_points', $content); - sendEmail($content['email'], getMessage('ADMIN_SPONSOR_SUB_POINTS_SUBJ'), $message); - $message = getMessage('ADMIN_SPONSOR_POINTS_SUBTRACTED'); + sendEmail($content['email'], '{--ADMIN_SPONSOR_SUB_POINTS_SUBJECT--}', $message); + $message = '{--ADMIN_SPONSOR_POINTS_SUBTRACTED--}'; } else { // No points entered to add! - $message = getMessage('ADMIN_SPONSPOR_NO_POINTS_TO_SUBTRACT'); + $message = '{--ADMIN_SPONSPOR_NO_POINTS_TO_SUBTRACT--}'; } break; case 'edit': // Edit sponsor account $PASS = true; - if ((postRequestElement('pass1') != postRequestElement('pass2')) || ((!isPostRequestElementSet('pass1')) && (!isPostRequestElementSet('pass1')))) { + if ((postRequestParameter('pass1') != postRequestParameter('pass2')) || ((!isPostRequestParameterSet('pass1')) && (!isPostRequestParameterSet('pass1')))) { // Remove passwords - unsetPostRequestElement('pass1'); - unsetPostRequestElement('pass2'); + unsetPostRequestParameter('pass1'); + unsetPostRequestParameter('pass2'); $PASS = false; } // END - if @@ -148,19 +149,19 @@ LIMIT 1", handlSponsorRequest(postRequestArray()); // Convert some data for the email template - postRequestElement('gender' , translateGender(postRequestElement('gender'))); - postRequestElement('warning_interval', createFancyTime(postRequestElement('warning_interval'))); + postRequestParameter('gender' , translateGender(postRequestParameter('gender'))); + postRequestParameter('warning_interval', createFancyTime(postRequestParameter('warning_interval'))); - if ($PASS === false) setRequestPostElement('pass1', getMessage('SPONSOR_PASS_UNCHANGED')); + if ($PASS === false) setPostRequestParameter('pass1', '{--SPONSOR_PASS_UNCHANGED--}'); // Load email template and send the mail away $message = loadEmailTemplate('admin_sponsor_edit', postRequestArray(), false); - sendEmail(postRequestElement('email'), getMessage('ADMIN_SPONSOR_EDIT_SUBJECT'), $message); + sendEmail(postRequestParameter('email'), '{--ADMIN_SPONSOR_EDIT_SUBJECT--}', $message); break; default: // Unknown mode - logDebugMessage(__FILE__, __LINE__, sprintf("Unknown mode %s detected.", getRequestElement('mode'))); - $message = getMaskedMessage('ADMIN_SPONSOR_INVALID_MODE', getRequestElement('mode')); + logDebugMessage(__FILE__, __LINE__, sprintf("Unknown mode %s detected.", getRequestParameter('mode'))); + $message = getMaskedMessage('ADMIN_SPONSOR_INVALID_MODE', getRequestParameter('mode')); break; } @@ -168,7 +169,7 @@ LIMIT 1", // Output message loadTemplate('admin_settings_saved', false, $message); } // END - if - } elseif (isFileReadable(sprintf("%stemplates/%s/html/admin/%s.tpl", getConfig('PATH'), getLanguage(), $TPL))) { + } elseif (isFileReadable(sprintf("%stemplates/%s/html/admin/%s.tpl", getPath(), getLanguage(), $TPL))) { // Create mailto link $content['contact'] = '' . $content['surname'] . ' ' . $content['family'] . ''; @@ -176,18 +177,18 @@ LIMIT 1", loadTemplate($TPL); } else { // Template not found! - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_MODUS_TPL_404', getRequestElement('mode'))); + loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_MODUS_TPL_404', getRequestParameter('mode'))); } } else { // Sponsor not found! - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestElement('id')))); + loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id')))); } // Free result SQL_FREERESULT($result_main); } else { // Not called by what-list_sponsor.php - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_CALL_NOT_DIRECTLY')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_CALL_NOT_DIRECTLY--}'); } // [EOF]