Renamed function so it might be more understandable
[mailer.git] / inc / modules / member / what-points.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
4  * ===================                          Last change: 11/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-points.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : All your collected points...                     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Ihrer gesammelten Punkte                    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
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.                                  *
26  *                                                                      *
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.                         *
31  *                                                                      *
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,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif (!isMember()) {
42         redirectToIndexMemberOnlyModule();
43 }
44
45 // Add description as navigation point
46 addYouAreHereLink('member', __FILE__);
47
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__);
50
51 // Get total depths
52 $numDepths = SQL_NUMROWS($result_depths);
53
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;
59
60 // Remember row count in constant
61 $content['rowspan'] = ($numDepths * 2 + 15);
62
63 // Init some vars...
64 $content['total_points'] = '0';
65 $content['total_referals'] = '0';
66 $content['total_locked'] = '0';
67 $OUT = '';
68
69 // Load ref levels
70 while ($data = SQL_FETCHARRAY($result_depths)) {
71         // Merge it together
72         $content = merge_array($content, $data);
73
74         // Initialize array elements
75         $content['counter'] = '0';
76         $content['points'] = '0.00000';
77         $content['locked_points'] = '0.00000';
78
79         // Load referal points
80         $result_points = SQL_QUERY_ESC("SELECT `points`, `locked_points` FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s AND `ref_depth`='%s' LIMIT 1",
81                 array(
82                         getMemberId(),
83                         bigintval($content['level'])
84                 ), __FILE__, __LINE__);
85
86         // Do we have an entry?
87         if (SQL_NUMROWS($result_points) == 1) {
88                 // Load data
89                 $content = merge_array($content, SQL_FETCHARRAY($result_points));
90
91                 // Add both points
92                 $content['total_points'] += $content['points'];
93                 $content['total_locked'] += $content['locked_points'];
94         } // END - if
95
96         // Free result
97         SQL_FREERESULT($result_points);
98
99         // Load referal counts
100         $result_refs = SQL_QUERY_ESC("SELECT `counter` FROM `{?_MYSQL_PREFIX?}_refsystem` WHERE `userid`=%s AND `level`='%s' LIMIT 1",
101                 array(
102                         getMemberId(),
103                         bigintval($content['level'])
104                 ), __FILE__, __LINE__);
105
106         // Do we have an entry?
107         if (SQL_NUMROWS($result_refs) == 1) {
108                 // Load data
109                 $content = merge_array($content, SQL_FETCHARRAY($result_refs));
110
111                 // Add them to total refs
112                 $content['total_referals'] += $content['counter'];
113         } // END - if
114
115         // Free result
116         SQL_FREERESULT($result_refs);
117
118         // Output row
119         $OUT .= loadTemplate('member_points_row', true, $content);
120 } // END - while
121
122 // Free memory
123 SQL_FREERESULT($result_depths);
124
125 // Put rows to constant for the main template
126 $content['rows'] = $OUT;
127
128 // Remember several values in constants
129 $content['total_points']  = ($content['total_points'] - getUserData('used_points'));
130
131 // Fixes a bug when there is no bonus extension installed
132 if (isExtensionInstalledAndOlder('bonus', '0.4.4')) setConfigEntry('bonus_active', 'X');
133
134 // Members shall see no special rows here
135 $content['special_rows'] = '';
136
137 // Display login bonus and turbo-click bonus
138 if ((isExtensionInstalledAndNewer('bonus', '0.2.2')) && (isExtensionActive('bonus')) && (isBonusRallyeActive())) {
139         // Total bonus points
140         $content['total'] = getUserData('turbo_bonus') + getUserData('login_bonus') + getUserData('bonus_ref') + getUserData('bonus_order') + getUserData('bonus_stats');
141
142         // Output rows
143         $content['special_rows'] = loadTemplate('member_points_bonus_rows', true, $content);
144 } elseif ((isExtensionActive('bonus')) && (!isBonusRallyeActive())) {
145         // Bonus active rallye deactivated
146         $content['special_rows'] = loadTemplate('member_points_bonus_disabled', true);
147 } elseif ((isAdmin()) && (isExtensionOlder('bonus', '0.2.2')) && (isExtensionActive('bonus'))) {
148         // Please upgrade your bonus extension to v0.2.2 or newer!
149         $content['special_rows'] = loadTemplate('member_points_upgrade');
150 }
151
152 // Load final template
153 if (isExtensionActive('user')) {
154         // Load template when required extension is there
155         loadTemplate('member_points', false, $content);
156 } elseif (isAdmin()) {
157         // Missing extension
158         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
159 } else {
160         // Message for user
161         loadTemplate('admin_settings_saved', false, '{--PROBLEM_POINTS_OVERVIEW_UNAVAILABLE--}');
162 }
163
164 if (isExtensionActive('payout')) {
165         // Payput extension is installed and active so we can check if the user has enougth points
166         outputPayoutList($content['total_points'] - getUserData('used_points'));
167 } // END - if
168
169 // [EOF]
170 ?>