Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / member / what-bonus.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
4  * ===================                          Last change: 11/19/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-bonus.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Bonus pages for some extra points                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bonusseiten fuer ein paar Extrapunkte            *
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')) {
40         exit();
41 } elseif (!isMember()) {
42         redirectToIndexMemberOnlyModule();
43 }
44
45 // Add description as navigation point
46 addYouAreHereLink('member', __FILE__);
47
48 if ((!isExtensionActive('bonus')) && (!isAdmin())) {
49         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=bonus%}');
50         return;
51 } // END - if
52
53 // Add more bonus points here
54 $add = runFilterChain('add_bonus_points_user_columns', '');
55 $pointsColumns = '`turbo_bunus`';
56 if (!empty($add)) {
57         $pointsColumns = '(0' . $add . ')';
58 } // END - if
59
60 // Init variables
61 $lastOnline = '%s';
62 $ONLINE = '';
63
64 // Autopurge installed?
65 if ((isExtensionActive('autopurge')) && ((getApInactiveSince() > 0))) {
66         // Use last online timestamp to keep inactive members away from here
67         $lastOnline   = ' AND (UNIX_TIMESTAMP() - `last_online`) < {?ap_inactive_since?}';
68 } // END - if
69
70 // Let's check if there are some points left we can 'pay'...
71 $result = SQL_QUERY_ESC("SELECT
72         `userid`,
73         ".$pointsColumns." AS `points`,
74         `last_online`
75 FROM
76         `{?_MYSQL_PREFIX?}_user_data`
77 WHERE
78         " . $pointsColumns . " > 0 AND
79         `status`='CONFIRMED'
80         " . runFilterChain('user_exclusion_sql', ' ') . "
81         " . $lastOnline . "
82 ORDER BY
83         `points` DESC,
84         `last_online` DESC,
85         `userid` ASC
86 LIMIT {?bonus_ranks?}",
87         array(
88                 $ONLINE
89         ), __FILE__, __LINE__);
90
91 // Reset temporary variable and check for users
92 $OUT = '';
93 if (!SQL_HASZERONUMS($result)) {
94         // Load our winners...
95         $count = 1;
96         while ($content = SQL_FETCHARRAY($result)) {
97                 // Prepare data for the template
98                 $content['count']       = $count;
99                 $content['last_online'] = generateDateTime($content['last_online'], '2');
100
101                 // Load row template
102                 $OUT .= loadTemplate('member_bonus_row', true, $content);
103
104                 // Count one up
105                 $count++;
106         } // END - while
107 } else {
108         // No one is interested in our "active rallye" ! :-(
109         $OUT = loadTemplate('member_bonus_404', true);
110 }
111
112 // Free memory
113 SQL_FREERESULT($result);
114
115 // Prepare content array
116 $content['rows'] = $OUT;
117
118 // Load final template
119 loadTemplate('member_bonus', false, $content);
120
121 // [EOF]
122 ?>