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