2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/19/2003 *
4 * =================== Last change: 11/12/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-points.php *
8 * -------------------------------------------------------------------- *
9 * Short description : All your collected points... *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Alle Ihrer gesammelten Punkte *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
41 } elseif (!isMember()) {
42 redirectToIndexMemberOnlyModule();
45 // Add description as navigation point
46 addYouAreHereLink('member', __FILE__);
48 // Query for referal levels and percents
49 $result_depths = SQL_QUERY('SELECT `level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC', __FILE__, __LINE__);
52 $numDepths = SQL_NUMROWS($result_depths);
54 // Add many more rows for the login/turbo/ref/order bonus
55 // @TODO Should we rewrite this to a filter?
56 if (!isExtensionActive('bonus')) $numDepths += 1;
57 if (isExtensionInstalledAndNewer('bonus', '0.2.2')) $numDepths += 6;
58 if (isExtensionInstalledAndNewer('bonus', '0.4.4')) $numDepths += 4;
60 // Remember row count in constant
61 $content['rowspan'] = ($numDepths * 2 + 15);
63 // Initialize array elements
64 $content['part_points'] = '0.00000';
65 $content['part_referals'] = '0';
66 $content['part_locked'] = '0.00000';
67 $content['part_order'] = '0.00000';
68 $content['part_locked_order'] = '0.00000';
70 // And output variable
74 while ($data = SQL_FETCHARRAY($result_depths)) {
75 // Init points and counter here
76 $content['counter'] = '0';
77 $content['points'] = '0.00000';
78 $content['order_points'] = '0.00000';
79 $content['locked_points'] = '0.00000';
80 $content['locked_order_points'] = '0.00000';
83 $content = merge_array($content, $data);
85 // Default for referal level > 0
86 $depth = 'p.`ref_depth`=%s';
87 if (is_null($content['level'])) {
88 $depth = 'p.`ref_depth` IS NULL';
91 // Load referal points
92 $result_points = SQL_QUERY_ESC("SELECT
96 p.`locked_order_points`,
99 `{?_MYSQL_PREFIX?}_user_points` AS p
101 `{?_MYSQL_PREFIX?}_refsystem` AS r
103 p.`userid`=r.`userid` AND
104 p.`ref_depth`=r.`level`
111 makeZeroToNull($content['level'])
112 ), __FILE__, __LINE__);
114 // Do we have an entry?
115 if (SQL_NUMROWS($result_points) == 1) {
117 $content = merge_array($content, SQL_FETCHARRAY($result_points));
120 $content['part_points'] += $content['points'];
121 $content['part_order'] += $content['order_points'];
122 $content['part_locked'] += $content['locked_points'];
123 $content['part_locked_order'] += $content['locked_order_points'];
124 $content['part_referals'] += $content['counter'];
128 SQL_FREERESULT($result_points);
131 $OUT .= loadTemplate('member_points_row', true, $content);
135 SQL_FREERESULT($result_depths);
138 $content['userid'] = getMemberId();
140 // Put rows to constant for the main template
141 $content['rows'] = $OUT;
143 // Fixes a bug when there is no bonus extension installed
144 if (isExtensionInstalledAndOlder('bonus', '0.4.4')) {
145 setConfigEntry('bonus_active', 'X');
148 // Members shall see no special rows here
149 $content['special_rows'] = '';
151 // Display login bonus and turbo-click bonus
152 if ((isExtensionInstalledAndNewer('bonus', '0.2.2')) && (isExtensionActive('bonus')) && (isBonusRallyeActive())) {
153 // Total bonus points
154 $content['bonus_total_points'] = getUserData('turbo_bonus') + getUserData('login_bonus') + getUserData('bonus_ref') + getUserData('bonus_order') + getUserData('bonus_stats');
157 $content['special_rows'] = loadTemplate('member_points_bonus_rows', true, $content);
158 } elseif ((isExtensionActive('bonus')) && (!isBonusRallyeActive())) {
159 // Bonus active rallye deactivated
160 $content['special_rows'] = loadTemplate('member_points_bonus_disabled', true);
161 } elseif ((isAdmin()) && (isExtensionInstalledAndOlder('bonus', '0.2.2')) && (isExtensionActive('bonus'))) {
162 // Please upgrade your bonus extension to v0.2.2 or newer!
163 $content['special_rows'] = loadTemplate('member_points_upgrade');
166 // Load final template
167 if (isExtensionActive('user')) {
168 // Load template when required extension is there
169 loadTemplate('member_points', false, $content);
170 } elseif (isAdmin()) {
172 displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=user%}');
175 displayMessage('{--PROBLEM_POINTS_OVERVIEW_UNAVAILABLE--}');
178 if (isExtensionActive('payout')) {
179 // Payput extension is installed and active so we can check if the user has enougth points
180 outputPayoutList($content['part_points'] - getUserData('used_points'));