2 /************************************************************************
3 * MXChange v0.2.1 Start: 10/19/2003 *
4 * =============== Last change: 11/19/2005 *
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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
43 } elseif (!IS_MEMBER()) {
44 redirectToUrl('modules.php?module=index');
45 } elseif ((!EXT_IS_ACTIVE('bonus')) && (!IS_ADMIN())) {
46 addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('bonus'));
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
53 if (GET_EXT_VERSION('bonus') >= '0.6.9') {
54 // Add more bonus points here
55 // @TODO Rewrite this to a filter
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";
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');
76 // Let's check if there are some points left we can 'pay'...
77 $result = SQL_QUERY_ESC("SELECT
78 `userid`, `".$USE."` AS points, `last_online`
80 `{!_MYSQL_PREFIX!}_user_data`
82 `".$USE."` > 0 AND `status`='CONFIRMED'".$lastOnline."
90 getConfig('bonus_ranks')
91 ), __FILE__, __LINE__);
93 // Reset temporary variable and check for users
95 if (SQL_NUMROWS($result) > 0) {
96 // Load our winners...
98 while ($content = SQL_FETCHARRAY($result)) {
99 // Prepare data for the template
103 'uid' => bigintval($content['uid']),
104 'points' => translateComma($content['points']),
105 'last' => generateDateTime($content['last'], '2')
109 $OUT .= LOAD_TEMPLATE('member_bonus_row', true, $content);
111 // Count one up and switch colors
112 $cnt++; $SW = 3 - $SW;
115 // No one is interested in our "active rallye" ! :-(
116 $OUT = LOAD_TEMPLATE('member_bonus_404', true);
120 SQL_FREERESULT($result);
122 // Remeber row(s) for the template
123 define('__BONUS_ROWS', $OUT);
125 // Load final template
126 LOAD_TEMPLATE('member_bonus');