21c07396ff0fbf373fc7ad7fe2dd828463f8d3c8
[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 - 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')) {
40         die();
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 if (isExtensionInstalledAndNewer('bonus', '0.6.9')) {
54         // Add more bonus points here
55         // @TODO Rewrite this to a filter
56         $USE = '(0';
57         if (getConfig('bonus_click_yn') == 'Y') $USE .= ' + `turbo_bonus`';
58         if (getConfig('bonus_login_yn') == 'Y') $USE .= ' + `login_bonus`';
59         if (getConfig('bonus_order_yn') == 'Y') $USE .= ' + `bonus_order`';
60         if (getConfig('bonus_stats_yn') == 'Y') $USE .= ' + `bonus_stats`';
61         if (getConfig('bonus_ref_yn')   == 'Y') $USE .= ' + `bonus_ref`';
62         $USE .= ')';
63 } else {
64         // Old version ???
65         $USE = '`turbo_bonus`';
66 }
67
68 // Init variables
69 $lastOnline = '%s';
70 $ONLINE = '';
71
72 // Autopurge installed?
73 if ((isExtensionActive('autopurge')) && ((getApInactiveSince() > 0))) {
74         // Use last online timestamp to keep inactive members away from here
75         $lastOnline   = ' AND (UNIX_TIMESTAMP() - `last_online`) >= {?ap_inactive_since?}';
76 } // END - if
77
78 // Let's check if there are some points left we can 'pay'...
79 $result = SQL_QUERY_ESC("SELECT
80         `userid`, ".$USE." AS `points`, `last_online`
81 FROM
82         `{?_MYSQL_PREFIX?}_user_data`
83 WHERE
84         " . $USE . " > 0 AND
85         `status`='CONFIRMED'
86         " . $lastOnline . "
87 ORDER BY
88         `points` DESC,
89         last_online DESC,
90         userid ASC
91 LIMIT {?bonus_ranks?}",
92         array(
93                 $ONLINE
94         ), __FILE__, __LINE__);
95
96 // Reset temporary variable and check for users
97 $OUT = '';
98 if (!SQL_HASZERONUMS($result)) {
99         // Load our winners...
100         $count = 1;
101         while ($content = SQL_FETCHARRAY($result)) {
102                 // Prepare data for the template
103                 $content['cnt']         = $count;
104                 $content['last_online'] = generateDateTime($content['last_online'], 2);
105
106                 // Load row template
107                 $OUT .= loadTemplate('member_bonus_row', true, $content);
108
109                 // Count one up
110                 $count++;
111         } // END - while
112 } else {
113         // No one is interested in our "active rallye" ! :-(
114         $OUT = loadTemplate('member_bonus_404', true);
115 }
116
117 // Free memory
118 SQL_FREERESULT($result);
119
120 // Prepare content array
121 $content['rows'] = $OUT;
122
123 // Load final template
124 loadTemplate('member_bonus', false, $content);
125
126 // [EOF]
127 ?>