A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / member / what-bonus.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  * 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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         LOAD_URL("modules.php[5~?module=index");
45 } elseif ((!EXT_IS_ACTIVE('bonus')) && (!IS_ADMIN())) {
46         addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'bonus');
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 if (GET_EXT_VERSION('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 // Autopurge installed?
69 $lastOnline = "%s"; $ONLINE = '';
70 if (EXT_IS_ACTIVE('autopurge')) {
71         // Use last online timestamp to keep inactive members away from here
72         $lastOnline   = " AND last_online >= (UNIX_TIMESTAMP() - %s)";
73         $ONLINE = getConfig('ap_inactive_since');
74 }
75
76 // Let's check if there are some points left we can "pay"...
77 $result = SQL_QUERY_ESC("SELECT userid, ".$USE." AS points, last_online FROM `{!_MYSQL_PREFIX!}_user_data`
78 WHERE ".$USE." > 0 AND `status`='CONFIRMED'".$lastOnline."
79 ORDER BY points DESC, last_online DESC, userid
80 LIMIT %s",
81         array($ONLINE, getConfig('bonus_ranks')), __FILE__, __LINE__);
82
83 // Reset temporary variable and check for users
84 $OUT = '';
85 if (SQL_NUMROWS($result) > 0) {
86         // Load our winners...
87         $SW = 2; $cnt = 1;
88         while ($content = SQL_FETCHARRAY($result)) {
89                 // Prepare data for the template
90                 $content = array(
91                 $content['sw']     = $SW;
92                 $content['cnt']    = $cnt;
93                 $content['uid']    = bigintval($content['uid']);
94                 $content['points'] = TRANSLATE_COMMA($content['points']);
95                 $content['last']   = MAKE_DATETIME($content['last'], "2");
96
97                 // Load row template
98                 $OUT .= LOAD_TEMPLATE("member_bonus_row", true, $content);
99
100                 // Count one up and switch colors
101                 $cnt++;$SW = 3 - $SW;
102         }
103 } else {
104         // No one is interested in our "active rallye" ! :-(
105         $OUT = LOAD_TEMPLATE("member_bonus_404", true);
106 }
107
108 // Free memory
109 SQL_FREERESULT($result);
110
111 // Remeber row(s) for the template
112 define('__BONUS_ROWS', $OUT);
113
114 // Load final template
115 LOAD_TEMPLATE("member_bonus");
116
117 //
118 ?>