A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / modules / admin / what-sub_points.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/23/2003 *
4  * ===================                          Last change: 09/23/2004 *
5  *                                                                      *
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  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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                  *
21  *                                                                      *
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.                                  *
26  *                                                                      *
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.                         *
31  *                                                                      *
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,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 if (getRequestParameter('userid') == 'all') {
47         // Is the form sent?
48         if ((isFormSent()) && (postRequestParameter('points') > 0)) {
49                 // Add points to all accounts
50                 $content['points'] = bigintval(postRequestParameter('points'));
51
52                 // Load userid
53                 $result_main = SQL_QUERY("SELECT `userid`,`email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
54                         __FILE__, __LINE__);
55                 while ($row = SQL_FETCHARRAY($result_main)) {
56                         // Merge both arrays
57                         $content = merge_array($content, $row);
58
59                         // Ok, add points to used points, send an email to him and ignore return status
60                         subtractPoints('admin_all', $content['userid'], postRequestParameter('points'));
61
62                         // Prepare content
63                         $content = array(
64                                 'reason' => SQL_ESCAPE(postRequestParameter('reason')),
65                                 'points' => bigintval(postRequestParameter('points'))
66                         );
67
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);
71                 } // END - while
72
73                 // Free memory
74                 SQL_FREERESULT($result_main);
75
76                 // Output message
77                 displayMessage('{--ADMIN_ALL_POINTS_SUBTRACTED--}');
78         } else {
79                 // Display form add points
80                 loadTemplate('admin_sub_points_all');
81         }
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();
87
88                 if ((isFormSent()) && (isPostRequestParameterSet('points'))) {
89                         // Ok, add to used points, send an email to him and ignore return status
90                         subtractPoints('admin_single', bigintval(getRequestParameter('userid')), postRequestParameter('points'));
91
92                         // Prepare content
93                         $content = array(
94                                 'reason' => SQL_ESCAPE(postRequestParameter('reason')),
95                                 'points' => bigintval(postRequestParameter('points'))
96                         );
97
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);
101
102                         // Output message
103                         displayMessage('{--ADMIN_POINTS_SUBTRACTED--}');
104                 } else {
105                         // Prepare content
106                         $content['userid'] = bigintval(getRequestParameter('userid'));
107
108                         // Load form
109                         loadTemplate('admin_sub_points', false, $content);
110                 }
111         } else {
112                 // User not found
113                 loadTemplate('admin_settings_unsaved', false, '{%message,ADMIN_MEMBER_404=' . bigintval(getRequestParameter('userid')) . '%}');
114         }
115 } else {
116         // Output selection form with all confirmed user accounts listed
117         addMemberSelectionBox(0, true);
118 }
119
120 // [EOF]
121 ?>