2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 11/23/2003 *
4 * =================== Last change: 09/23/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-sub_points.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Add manually points to a user *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Manuell einem Mitglied Punkte gutschreiben *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
46 if (getRequestParameter('userid') == 'all') {
48 if ((isFormSent()) && (postRequestParameter('points') > 0)) {
49 // Add points to all accounts
50 $content['points'] = bigintval(postRequestParameter('points'));
53 $result_main = SQL_QUERY("SELECT `userid`, `email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
55 while ($row = SQL_FETCHARRAY($result_main)) {
57 $content = merge_array($content, $row);
59 // Ok, add points to used points and send an email to him...
60 subtractPoints('admin_all', $content['userid'], postRequestParameter('points'));
64 'reason' => SQL_ESCAPE(postRequestParameter('reason')),
65 'points' => bigintval(postRequestParameter('points'))
68 // Load message and send it away
69 $message = loadEmailTemplate('member_sub_points', $content, bigintval($content['userid']));
70 sendEmail($row['userid'], '{--ADMIN_SUB_SUBJECT--}', $message);
74 SQL_FREERESULT($result_main);
77 displayMessage('{--ADMIN_ALL_POINTS_SUBTRACTED--}');
79 // Display form add points
80 loadTemplate('admin_sub_points_all');
82 } elseif (isGetRequestParameterSet('userid')) {
83 // User id found in URL so we use this give him some credits
84 if (fetchUserData(getRequestParameter('userid'))) {
85 // Selected user does exist
86 $content = getUserDataArray();
88 if ((isFormSent()) && (isPostRequestParameterSet('points'))) {
89 // Ok, add to used points and send an email to him...
90 subtractPoints('admin_single', bigintval(getRequestParameter('userid')), postRequestParameter('points'));
94 'reason' => SQL_ESCAPE(postRequestParameter('reason')),
95 'points' => bigintval(postRequestParameter('points'))
98 // Load email and send it away
99 $message = loadEmailTemplate('member_sub_points', $content, bigintval(getRequestParameter('userid')));
100 sendEmail(getRequestParameter('userid'), '{--ADMIN_SUB_SUBJECT--}', $message);
103 displayMessage('{--ADMIN_POINTS_SUBTRACTED--}');
106 $content['userid'] = bigintval(getRequestParameter('userid'));
109 loadTemplate('admin_sub_points', false, $content);
113 loadTemplate('admin_settings_unsaved', false, '{%message,ADMIN_MEMBER_404=' . bigintval(getRequestParameter('userid')) . '%}');
116 // Output selection form with all confirmed user accounts listed
117 addMemberSelectionBox(0, true);