]> git.mxchange.org Git - mailer.git/blob - inc/modules/member/what-bonus.php
Next wave of more use of EL, see ticket #176
[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  * 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 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif (!isMember()) {
44         redirectToIndexMemberOnlyModule();
45 }
46
47 // Add description as navigation point
48 addMenuDescription('member', __FILE__);
49
50 if ((!isExtensionActive('bonus')) && (!isAdmin())) {
51         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('bonus'));
52         return;
53 } // END - if
54
55 if (isExtensionInstalledAndNewer('bonus', '0.6.9')) {
56         // Add more bonus points here
57         // @TODO Rewrite this to a filter
58         $USE = '(0';
59         if (getConfig('bonus_click_yn') == 'Y') $USE .= ' + `turbo_bonus`';
60         if (getConfig('bonus_login_yn') == 'Y') $USE .= ' + `login_bonus`';
61         if (getConfig('bonus_order_yn') == 'Y') $USE .= ' + `bonus_order`';
62         if (getConfig('bonus_stats_yn') == 'Y') $USE .= ' + `bonus_stats`';
63         if (getConfig('bonus_ref_yn')   == 'Y') $USE .= ' + `bonus_ref`';
64         $USE .= ')';
65 } else {
66         // Old version ???
67         $USE = '`turbo_bonus`';
68 }
69
70 // Autopurge installed?
71 $lastOnline = '%s'; $ONLINE = '';
72 if (isExtensionActive('autopurge')) {
73         // Use last online timestamp to keep inactive members away from here
74         $lastOnline   = " AND `last_online` >= (UNIX_TIMESTAMP() - %s)";
75         $ONLINE = getConfig('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_NUMROWS($result) > 0) {
99         // Load our winners...
100         $SW = 2; $cnt = 1;
101         while ($content = SQL_FETCHARRAY($result)) {
102                 // Prepare data for the template
103                 $content = array(
104                         'sw'          => $SW,
105                         'cnt'         => $cnt,
106                         'userid'      => $content['userid'],
107                         'points'      => $content['points'],
108                         'last_online' => generateDateTime($content['last_online'], 2)
109                 );
110
111                 // Load row template
112                 $OUT .= loadTemplate('member_bonus_row', true, $content);
113
114                 // Count one up and switch colors
115                 $cnt++; $SW = 3 - $SW;
116         } // END - while
117 } else {
118         // No one is interested in our "active rallye" ! :-(
119         $OUT = loadTemplate('member_bonus_404', true);
120 }
121
122 // Free memory
123 SQL_FREERESULT($result);
124
125 // Prepare content array
126 $content['rows'] = $OUT;
127
128 // Load final template
129 loadTemplate('member_bonus', false, $content);
130
131 // [EOF]
132 ?>