Fixed broken german umlauts
[mailer.git] / 0.2.1 / 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 (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!IS_LOGGED_IN())
41 {
42         LOAD_URL(URL."/modules.php[5~?module=index");
43 }
44  elseif ((!EXT_IS_ACTIVE("bonus")) && (!IS_ADMIN()))
45 {
46         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "bonus");
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR("member", basename(__FILE__));
52 OUTPUT_HTML ("</FONT><BR>");
53
54 if (GET_EXT_VERSION("bonus") >= "0.6.9")
55 {
56         // Add more bonus points here
57         $USE = "(0";
58         if ($CONFIG['bonus_click_yn'] == "Y") $USE .= " + turbo_bonus";
59         if ($CONFIG['bonus_login_yn'] == "Y") $USE .= " + login_bonus";
60         if ($CONFIG['bonus_order_yn'] == "Y") $USE .= " + bonus_order";
61         if ($CONFIG['bonus_stats_yn'] == "Y") $USE .= " + bonus_stats";
62         if ($CONFIG['bonus_ref_yn']   == "Y") $USE .= " + bonus_ref";
63         $USE .= ")";
64 }
65  else
66 {
67         // Old version ???
68         $USE = "turbo_bonus";
69 }
70
71 // Autopurge installed?
72 $LAST = "%s"; $ONLINE = "";
73 if (EXT_IS_ACTIVE("autopurge"))
74 {
75         // Use last online timestamp to keep inactive members away from here
76         $LAST   = " AND last_online >= %s";
77         $ONLINE = bigintval(time() - $CONFIG['ap_in_since']);
78 }
79
80 // Let's check if there are some points left we can "pay"...
81 $result = SQL_QUERY_ESC("SELECT userid, ".$USE." AS active_bonus, last_online FROM "._MYSQL_PREFIX."_user_data
82 WHERE ".$USE." > 0 AND status='CONFIRMED'".$LAST."
83 ORDER BY active_bonus DESC, last_online DESC, userid LIMIT %s",
84  array($ONLINE, $CONFIG['bonus_ranks']), __FILE__, __LINE__);
85
86 // Reset temporary variable and check for users
87 $OUT = "";
88 if (SQL_NUMROWS($result) > 0)
89 {
90         // Load our winners...
91         $SW = 2; $cnt = 1;
92         while(list($uid, $turbo, $last) = SQL_FETCHROW($result))
93         {
94                 // Prepare data for the template
95                 $content = array(
96                         'sw'     => $SW,
97                         'cnt'    => $cnt,
98                         'uid'    => bigintval($uid),
99                         'points' => TRANSLATE_COMMA($turbo),
100                         'last'   => MAKE_DATETIME($last, "2"),
101                 );
102
103                 // Load row template
104                 $OUT .= LOAD_TEMPLATE("member_bonus_row", true, $content);
105
106                 // Count one up and switch colors
107                 $cnt++;$SW = 3 - $SW;
108         }
109 }
110  else
111 {
112         // No one is interested in our "active rallye" ! :-(
113         $OUT = LOAD_TEMPLATE("member_bonus_404", true);
114 }
115
116 // Free memory
117 SQL_FREERESULT($result);
118
119 // Remeber row(s) for the template
120 define('__BONUS_ROWS', $OUT);
121
122 // Load final template
123 LOAD_TEMPLATE("member_bonus");
124
125 //
126 ?>