X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-edit_sponsor.php;h=36be4046f3a172bd95623032443f2a26b5a32496;hp=8840a1a8759f2a26b0bf600e3084e9c533ddf07e;hb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;hpb=b3f82be7e5ecc294acfe9c00ef75e3dc0c8b43d1 diff --git a/inc/modules/admin/what-edit_sponsor.php b/inc/modules/admin/what-edit_sponsor.php index 8840a1a875..36be4046f3 100644 --- a/inc/modules/admin/what-edit_sponsor.php +++ b/inc/modules/admin/what-edit_sponsor.php @@ -1,7 +1,7 @@ 0) { - // Replace german decimal comma with computer's decimal dot - $POINTS = strval(REVERT_COMMA($_POST['points'])); - - // Add points to account - $result_add = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET points_amount=points_amount+%s WHERE id='%s' LIMIT 1", - array($POINTS, bigintval($_GET['id'])), __FILE__, __LINE__); - - // Remember points /reason for the template - define('__POINTS' , TRANSLATE_COMMA($POINTS)); - define('__REASON' , $_POST['reason']); - - // Send email - $msg = LOAD_EMAIL_TEMPLATE("sponsor_add_points", $_POST['reason'], true); - SEND_EMAIL(__EMAIL, SPONSOR_ADMIN_ADD_POINTS, $msg); - $MSG = ADMIN_SPONSOR_POINTS_ADDED; - } else { - // No points entered to add! - $MSG = ADMIN_SPONSPOR_NO_POINTS_TO_ADD; - } - break; - - case "sub_points": // Subtract points - if (strval($_POST['points']) > 0) { - // Replace german decimal comma with computer's decimal dot - $POINTS = strval(REVERT_COMMA($_POST['points'])); - - // Add points to account - $result_add = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET points_used=points_used+%s WHERE id='%s' LIMIT 1", - array($POINTS, bigintval($_GET['id'])), __FILE__, __LINE__); - - // Remember points /reason for the template - define('__POINTS' , TRANSLATE_COMMA($POINTS)); - define('__REASON' , $_POST['reason']); - - // Send email - $msg = LOAD_EMAIL_TEMPLATE("sponsor_sub_points", $_POST['reason'], true); - SEND_EMAIL(__EMAIL, SPONSOR_ADMIN_SUB_POINTS, $msg); - $MSG = ADMIN_SPONSOR_POINTS_SUBTRACTED; - } else { - // No points entered to add! - $MSG = ADMIN_SPONSPOR_NO_POINTS_TO_SUBTRACT; - } - break; - - case "edit": // Edit sponsor account - $PASS = true; - if (($_POST['pass1'] != $_POST['pass2']) || ((empty($_POST['pass1'])) && (empty($_POST['pass1'])))) { - // Remove passwords - unset($_POST['pass1']); - unset($_POST['pass2']); - $PASS = false; - } - SPONSOR_HANDLE_SPONSOR($_POST); - - // Convert some data for the email template - $_POST['gender'] = TRANSLATE_GENDER($_POST['gender']); - $_POST['warning_interval'] = CREATE_FANCY_TIME($_POST['warning_interval']); - if (!$PASS) $_POST['pass1'] = SPONSOR_PASS_UNCHANGED; - - // Load email template and send the mail away - $msg = LOAD_EMAIL_TEMPLATE("admin_sponsor_edit", $_POST, false); - SEND_EMAIL($_POST['email'], SPONSOR_ADMIN_EDIT_SUBJECT, $msg); - break; - - default: // Unknown mode - $MSG = ADMIN_INVALID_MODE_1.SQL_ESCAPE($_GET['mode']).ADMIN_INVALID_MODE_2; - break; + switch (getRequestParameter('mode')) { + case 'add_points': // Add points + if (bigintval(postRequestParameter('points')) > 0) { + // Replace german decimal comma with computer's decimal dot + $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(getRequestParameter('id'))), __FILE__, __LINE__); + + // Remember points /reason for the template + $content['points'] = $points; + $content['reason'] = secureString(postRequestParameter('reason')); + + // Send email + $message = loadEmailTemplate('sponsor_add_points', $content); + sendEmail($content['email'], '{--ADMIN_SPONSOR_ADD_POINTS_SUBJECT--}', $message); + $message = '{--ADMIN_SPONSOR_POINTS_ADDED--}'; + } else { + // No points entered to add! + $message = '{--ADMIN_SPONSOR_NO_POINTS_TO_ADD--}'; + } + break; + + case 'sub_points': // Subtract points + if (bigintval(postRequestParameter('points')) > 0) { + // Replace german decimal comma with computer's decimal dot + $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(getRequestParameter('id'))), __FILE__, __LINE__); + + // Remember points /reason for the template + $content['points'] = $points; + $content['reason'] = secureString(postRequestParameter('reason')); + + // Send email + $message = loadEmailTemplate('sponsor_sub_points', $content); + sendEmail($content['email'], '{--ADMIN_SPONSOR_SUB_POINTS_SUBJECT--}', $message); + $message = '{--ADMIN_SPONSOR_POINTS_SUBTRACTED--}'; + } else { + // No points entered to add! + $message = '{--ADMIN_SPONSOR_NO_POINTS_TO_SUBTRACT--}'; + } + break; + + case 'edit': // Edit sponsor account + $PASS = true; + if ((postRequestParameter('pass1') != postRequestParameter('pass2')) || ((!isPostRequestParameterSet('pass1')) && (!isPostRequestParameterSet('pass1')))) { + // Remove passwords + unsetPostRequestParameter('pass1'); + unsetPostRequestParameter('pass2'); + $PASS = false; + } // END - if + + // Convert time selection + $DATA = array(); $id = 'warning_interval_ye'; $skip = false; + convertSelectionsToTimestamp(postRequestArray(), $DATA, $id, $skip); + + // 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') . '%}'); + + if ($PASS === false) setPostRequestParameter('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); + break; + + default: // Unknown mode + logDebugMessage(__FILE__, __LINE__, sprintf("Unknown mode %s detected.", getRequestParameter('mode'))); + $message = getMaskedMessage('ADMIN_SPONSOR_INVALID_MODE', getRequestParameter('mode')); + break; } - if (!empty($MSG)) { + if (!empty($message)) { // Output message - LOAD_TEMPLATE("admin_settings_saved", false, $MSG); + loadTemplate('admin_settings_saved', false, $message); } // END - if - } elseif (FILE_READABLE(sprintf("%stemplates/%s/html/admin/%s.tpl", PATH, GET_LANGUAGE(), $TPL))) { + } elseif (isFileReadable(sprintf("%stemplates/%s/html/admin/%s.tpl", getPath(), getLanguage(), $TPL))) { // Create mailto link - define('__SPONSOR_VALUE', "".__SURNAME." ".__FAMILY.""); + $content['contact'] = '' . $content['surname'] . ' ' . $content['family'] . ''; // Load mode template - LOAD_TEMPLATE($TPL); + loadTemplate($TPL, false, $content); } else { // Template not found! - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_TPL_404_1.SQL_ESCAPE($_GET['mode']).ADMIN_TPL_404_2); + loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_MODUS_TPL_404', getRequestParameter('mode'))); } } else { // Sponsor not found! - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SPONSOR_404_1.bigintval($_GET['id']).ADMIN_SPONSOR_404_2); + 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 - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_CALL_NOT_DIRECTLY); + loadTemplate('admin_settings_saved', false, '{--ADMIN_CALL_NOT_DIRECTLY--}'); } -// +// [EOF] ?>