Code style changed, ext-user continued:
[mailer.git] / inc / modules / admin / what-add_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-add_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 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://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 (getRequestElement('userid') == 'all') {
47         // Add points to all accounts
48         if ((isFormSent()) && (postRequestElement('points') > 0)) {
49                 // Points
50                 $content['points'] = bigintval(postRequestElement('points'));
51
52                 // Select all users
53                 $result_main = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
54                         __FILE__, __LINE__);
55
56                 // Process all entries
57                 while ($row = SQL_FETCHARRAY($result_main)) {
58                         // Merge $row into $content
59                         $content = merge_array($content, $row);
60
61                         // Init referral system
62                         initReferralSystem();
63
64                         // Ok, add points and send an email to him...
65                         addPointsThroughReferralSystem('admin_add_all', $content['userid'], bigintval(postRequestElement('points')));
66
67                         // Prepare content
68                         $content = array(
69                                 'reason'  => SQL_ESCAPE(postRequestElement('reason')),
70                                 'points'  => bigintval(postRequestElement('points')),
71                                 'userid'  => $row['userid'],
72                                 'subject' => 'admin_add_all',
73                         );
74
75                         // Load email template and send email away
76                         $message = loadEmailTemplate('member_add_points', $content, bigintval($content['userid']));
77                         sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_SUBJECT--}', $message);
78                 } // END - while
79
80                 // Free memory
81                 SQL_FREERESULT($result_main);
82
83                 // Output message
84                 displayMessage('{--ADMIN_ALL_POINTS_ADDED--}');
85         } else {
86                 // Display form add points
87                 loadTemplate('admin_add_points_all');
88         }
89 } elseif (isGetRequestElementSet('userid')) {
90         // User id found in URL so we use this give him some credits
91         if (fetchUserData(getRequestElement('userid'))) {
92                 // Selected user does exist
93                 $content = getUserDataArray();
94
95                 if ((isFormSent()) && (isPostRequestElementSet('points'))) {
96                         // Init referral system
97                         initReferralSystem();
98
99                         // Add points and send an email to him...
100                         addPointsThroughReferralSystem('admin_add_single', bigintval(getRequestElement('userid')), bigintval(postRequestElement('points')));
101
102                         // Prepare content
103                         $content = array(
104                                 'reason'  => SQL_ESCAPE(postRequestElement('reason')),
105                                 'points'  => bigintval(postRequestElement('points')),
106                                 'subject' => 'admin_add_single',
107                         );
108
109                         // Load message
110                         $message = loadEmailTemplate('member_add_points', $content, bigintval(getRequestElement('userid')));
111
112                         // Send the email out
113                         sendEmail(bigintval(getRequestElement('userid')), '{--ADMIN_ADD_SUBJECT--}', $message);
114
115                         // ... and display a message
116                         displayMessage('{--ADMIN_POINTS_ADDED--}');
117                 } else {
118                         // Prepare content
119                         $content['userid'] = bigintval(getRequestElement('userid'));
120
121                         // Output template
122                         loadTemplate('admin_add_points', FALSE, $content);
123                 }
124         } else {
125                 // User not found
126                 loadTemplate('admin_settings_unsaved', FALSE, '{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}');
127         }
128 } else {
129         // Output selection form with all confirmed user accounts listed
130         addMemberSelectionBox(0, TRUE);
131 }
132
133 // [EOF]
134 ?>