X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-add_points.php;h=f376333cae938d4e899bd1109b8a959417f04309;hp=e1b3d1a5184c4966f806f17df3e2d03562ec69a8;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hpb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d diff --git a/inc/modules/admin/what-add_points.php b/inc/modules/admin/what-add_points.php index e1b3d1a518..f376333cae 100644 --- a/inc/modules/admin/what-add_points.php +++ b/inc/modules/admin/what-add_points.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * 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 - 2016 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,81 +43,91 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { // Add description as navigation point addYouAreHereLink('admin', __FILE__); -if (getRequestParameter('userid') == 'all') { +if (getRequestElement('userid') == 'all') { // Add points to all accounts - if ((isFormSent()) && (postRequestParameter('points') > 0)) { + if ((isFormSent()) && (postRequestElement('points') > 0)) { // Points - $content['points'] = bigintval(postRequestParameter('points')); + $content['points'] = bigintval(postRequestElement('points')); // Select all users - $result_main = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", + $result_main = sqlQuery("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", __FILE__, __LINE__); // Process all entries - while ($row = SQL_FETCHARRAY($result_main)) { - // Remove depth to prevent booking errors. This is a bad coding - // practice, thats also why we need to write this project from - // scratch... - $GLOBALS['ref_level'] = -1; + while ($row = sqlFetchArray($result_main)) { + // Merge $row into $content + $content = merge_array($content, $row); + + // Init referral system + initReferralSystem(); // Ok, add points and send an email to him... - addPointsDirectly('admin_all', $content['userid'], bigintval(postRequestParameter('points'))); + addPointsThroughReferralSystem('admin_add_all', $content['userid'], bigintval(postRequestElement('points'))); // Prepare content $content = array( - 'reason' => SQL_ESCAPE(postRequestParameter('reason')), - 'points' => bigintval(postRequestParameter('points')) + 'reason' => sqlEscapeString(postRequestElement('reason')), + 'points' => bigintval(postRequestElement('points')), + 'userid' => $row['userid'], + 'subject' => 'admin_add_all', ); // Load email template and send email away - $message = loadEmailTemplate('add-points', $content, bigintval($content['userid'])); - sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_SUBJECT--}', $message); + $message = loadEmailTemplate('member_add_points', $content, bigintval($content['userid'])); + sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_POINTS_SUBJECT--}', $message); } // END - while // Free memory - SQL_FREERESULT($result_main); + sqlFreeResult($result_main); // Output message - loadTemplate('admin_settings_saved', false, '{--ADMIN_ALL_POINTS_ADDED--}'); + displayMessage('{--ADMIN_ALL_POINTS_ADDED--}'); } else { // Display form add points loadTemplate('admin_add_points_all'); } -} elseif (isGetRequestParameterSet('userid')) { +} elseif (isGetRequestElementSet('userid')) { // User id found in URL so we use this give him some credits - if (fetchUserData(getRequestParameter('userid'))) { + if (fetchUserData(getRequestElement('userid'))) { // Selected user does exist $content = getUserDataArray(); - if ((isFormSent()) && (isPostRequestParameterSet('points'))) { + if ((isFormSent()) && (isPostRequestElementSet('points'))) { + // Init referral system + initReferralSystem(); + // Add points and send an email to him... - addPointsDirectly('admin_single', bigintval(getRequestParameter('userid')), bigintval(postRequestParameter('points'))); + addPointsThroughReferralSystem('admin_add_single', bigintval(getRequestElement('userid')), bigintval(postRequestElement('points'))); // Prepare content $content = array( - 'reason' => SQL_ESCAPE(postRequestParameter('reason')), - 'points' => bigintval(postRequestParameter('points')) + 'reason' => sqlEscapeString(postRequestElement('reason')), + 'points' => bigintval(postRequestElement('points')), + 'subject' => 'admin_add_single', ); - // Message laden - $message = loadEmailTemplate('add-points', $content, bigintval(getRequestParameter('userid'))); + // Load message + $message = loadEmailTemplate('member_add_points', $content, bigintval(getRequestElement('userid'))); + + // Send the email out + sendEmail(bigintval(getRequestElement('userid')), '{--ADMIN_ADD_POINTS_SUBJECT--}', $message); - sendEmail(bigintval(getRequestParameter('userid')), '{--ADMIN_ADD_SUBJECT--}', $message); - loadTemplate('admin_settings_saved', false, '{--ADMIN_POINTS_ADDED--}'); + // ... and display a message + displayMessage('{--ADMIN_POINTS_ADDED--}'); } else { // Prepare content - $content['userid'] = bigintval(getRequestParameter('userid')); + $content['userid'] = bigintval(getRequestElement('userid')); // Output template - loadTemplate('admin_add_points', false, $content); + loadTemplate('admin_add_points', FALSE, $content); } } else { - // User not found! - loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_MEMBER_404', bigintval(getRequestParameter('userid')))); + // User not found + displayErrorMessage('{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}'); } } else { // Output selection form with all confirmed user accounts listed - addMemberSelectionBox(0, true); + addMemberSelectionBox(0, TRUE); } // [EOF]