A lot calls saved, expression language rewritten:
[mailer.git] / inc / modules / admin / what-list_bonus.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 02/04/2005 *
4  * ===================                          Last change: 11/19/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_bonus.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : List members in active-rallye                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mitglieder in Aktiv-Rallye auflisten             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (ifBonusRallyeActive()) {
49         // Shall I withdraw now?
50         if (isPostRequestParameterSet('withdraw')) {
51                 // Okay, let's prepare...
52                 $curr = getMonth() - 1;
53                 if (strlen($curr) == 1) $curr = '0' . $curr;
54                 updateConfiguration('last_month', $curr);
55                 loadTemplate('admin_settings_saved', false, '{--ADMIN_BONUS_WITHDRAW_PREPARED--}');
56         } // END - if
57
58         if (isExtensionInstalledAndNewer('bonus', '0.6.9')) {
59                 // Add more bonus points here
60                 $USE = '(0';
61                 if (getConfig('bonus_click_yn') == 'Y') $USE .= ' + `turbo_bonus`';
62                 if (getConfig('bonus_login_yn') == 'Y') $USE .= ' + `login_bonus`';
63                 if (getConfig('bonus_order_yn') == 'Y') $USE .= ' + `bonus_order`';
64                 if (getConfig('bonus_stats_yn') == 'Y') $USE .= ' + `bonus_stats`';
65                 if (getConfig('bonus_ref_yn')   == 'Y') $USE .= ' + `bonus_ref`';
66                 $USE .= ')';
67         } else {
68                 // Old version ???
69                 $USE = '`turbo_bonus`';
70         }
71
72         // Autopurge installed?
73         $lastOnline = '%s'; $ONLINE = '';
74         if (isExtensionActive('autopurge')) {
75                 // Use last online timestamp to keep inactive members away from here
76                 $lastOnline   = " AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})";
77         } // END - if
78
79         // Check if at least one is in the active rallye
80         $result = SQL_QUERY_ESC("SELECT
81         `userid`, `email`, `gender`, `surname`, `family`, ".$USE." AS points, `last_online`
82 FROM
83         `{?_MYSQL_PREFIX?}_user_data`
84 WHERE
85         `status`='CONFIRMED' AND
86         ".$USE." > 0
87         ".$lastOnline."
88 ORDER BY
89         `points` DESC,
90         `last_online` DESC,
91         `userid` ASC",
92                 array($ONLINE), __FILE__, __LINE__);
93
94         if (SQL_NUMROWS($result) > 0) {
95                 // List users
96                 $OUT = ''; $cnt = 1; $total = '0';
97                 while ($content = SQL_FETCHARRAY($result)) {
98                         // Add total points
99                         $total += $content['points'];
100
101                         // Generate array fore the dynamic template
102                         $WIN1 = ''; $WIN2 = '';
103                         if ($cnt <= getConfig('bonus_ranks')) {
104                                 // Maybe he can win his active bonus?
105                                 $WIN1 = '<strong>';
106                                 $WIN2 = '</strong>';
107                         } // END - if
108
109                         // Prepare content
110                         $content['email']       = generateEmailLink($content['email'], 'user_data');
111                         $content['last_online'] = generateDateTime($content['last_online'], 2);
112                         $content['win1']   = $WIN1;
113                         $content['win2']   = $WIN2;
114                         $content['cnt']    = $cnt;
115
116                         // Load template and add it
117                         $OUT .= loadTemplate('admin_list_bonus_rows', true, $content);
118                         $cnt++;
119                 } // END - while
120
121                 $content['rows']  = $OUT;
122                 $content['total'] = translateComma($total);
123
124                 // Check if we need to display form or not with manuel withdraw
125                 if (getConfig('last_month') == getMonth()) {
126                         // Load form
127                         $content['withdraw_form'] = loadTemplate('admin_list_bonus_form', true);
128                 } else {
129                         // Display message "no manual withdraw possible"
130                         $content['withdraw_form'] = loadTemplate('admin_settings_saved', true, '<div class="admin_failed">{--ADMIN_BONUS_ALREADY_WITHDRAW--}</div>');
131                 }
132
133                 // Prepare constant for timemark
134                 // @TODO Can't this be moved into our expression language?
135                 if (isExtensionActive('autopurge')) {
136                         $content['autopurge_timeout'] = generateDateTime(time() - getApInactiveSince(), 2);
137                 } else {
138                         $content['autopurge_timeout'] = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', 'autopurge');
139                 }
140
141                 // Load final template
142                 loadTemplate('admin_list_bonus', false, $content);
143         } else {
144                 // No one has become an "activity bonus"...
145                 loadTemplate('admin_settings_saved', false, '{--ADMIN_BONUS_NO_ACTIVE_RALLYE--}');
146         }
147 } else {
148         // Aktive-Rallye not activated
149         loadTemplate('admin_settings_saved', false, '{--ADMIN_BONUS_RALLYE_DEACTIVATED--}');
150 }
151
152 // [EOF]
153 ?>