2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 11/23/2003 *
4 * =================== Last change: 09/23/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-add_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 * Needs to be in all Files and every File needs "svn propset *
18 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2009 by Roland Haeder *
21 * For more information visit: http://www.mxchange.org *
23 * This program is free software; you can redistribute it and/or modify *
24 * it under the terms of the GNU General Public License as published by *
25 * the Free Software Foundation; either version 2 of the License, or *
26 * (at your option) any later version. *
28 * This program is distributed in the hope that it will be useful, *
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
31 * GNU General Public License for more details. *
33 * You should have received a copy of the GNU General Public License *
34 * along with this program; if not, write to the Free Software *
35 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
37 ************************************************************************/
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
47 if (getRequestParameter('userid') == 'all') {
48 // Add points to all accounts
49 if ((isFormSent()) && (postRequestParameter('points') > 0)) {
51 $content['points'] = bigintval(postRequestParameter('points'));
54 $result_main = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
57 // Process all entries
58 while ($content = merge_array($content, SQL_FETCHARRAY($result_main))) {
59 // Remove depth to prevent booking errors. This is a bad coding
60 // practice, thats also why we need to write this project from
62 $GLOBALS['ref_level'] = -1;
64 // Ok, add points and send an email to him...
65 addPointsDirectly('admin_all', $content['userid'], bigintval(postRequestParameter('points')));
68 $content['text'] = SQL_ESCAPE(postRequestParameter('reason'));
69 $content['points'] = bigintval(postRequestParameter('points'));
71 // Load email template and send email away
72 $message = loadEmailTemplate('add-points', $content, bigintval($content['userid']));
73 sendEmail(bigintval($content['userid']), getMessage('ADMIN_ADD_SUBJ'), $message);
77 SQL_FREERESULT($result_main);
80 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_POINTS_ADDED'));
82 // Display form add points
83 loadTemplate('admin_add_points_all');
85 } elseif (isGetRequestParameterSet('userid')) {
86 // User id found in URL so we use this give him some credits
87 if (fetchUserData(getRequestParameter('userid'))) {
88 // Selected user does exist
89 $content = getUserDataArray();
91 if ((isFormSent()) && (isPostRequestParameterSet('points'))) {
92 // Add points and send an email to him...
93 addPointsDirectly('admin_single', bigintval(getRequestParameter('userid')), bigintval(postRequestParameter('points')));
97 'text' => SQL_ESCAPE(postRequestParameter('reason')),
98 'points' => bigintval(postRequestParameter('points'))
102 $message = loadEmailTemplate('add-points', $content, bigintval(getRequestParameter('userid')));
104 sendEmail(bigintval(getRequestParameter('userid')), getMessage('ADMIN_ADD_SUBJ'), $message);
105 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_POINTS_ADDED'));
108 $content['user'] = '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['surname'] . ' ' . $content['family'] . '</a>';
109 $content['userid'] = bigintval(getRequestParameter('userid'));
112 loadTemplate('admin_add_points', false, $content);
116 loadTemplate('admin_settings_saved', false, '<div class="admin_failed">' . getMaskedMessage('ADMIN_MEMBER_404', getRequestParameter('userid')) . '</div>');
119 // Output selection form with all confirmed user accounts listed
120 addMemberSelectionBox(0, true);