A lot calls saved, expression language rewritten:
[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  * 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 // Query for referal levels and percents
51 $result_depths = SQL_QUERY("SELECT `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__);
52 $depths = 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')) $depths += 1;
57 if (isExtensionInstalledAndNewer('bonus', '0.2.2')) $depths += 6;
58 if (isExtensionInstalledAndNewer('bonus', '0.4.4')) $depths += 4;
59
60 // Remember row count in constant
61 $content['rowspan'] = ($depths*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 // Initialize variables
129 $content['confirmed'] = '---';
130 $content['sent']      = '---';
131 $content['receive']   = '---';
132
133 // Only user >= v0.1.2: Fetch confirmed mails counter
134 if (isExtensionInstalledAndNewer('user', '0.1.2')) {
135         $add = '';
136         $content['confirmed'] = getUserData('mails_confirmed');
137
138         if (isExtensionInstalledAndNewer('user', '0.1.4')) {
139                 $content['sent']    = getUserData('emails_sent');
140                 $content['receive'] = getUserData('emails_received');
141         } // END - if
142 } // END - if
143
144 // If TLOCK is 0 add 3 zeros for floating
145 if ($content['total_locked'] == '0') $content['total_locked'] = '0.00000';
146
147 // Remember several values in constants
148 $content['total_points']  = ($content['total_points'] - getUserData('used_points'));
149
150 // Fixes a bug when there is no bonus extension installed
151 if (isExtensionInstalledAndOlder('bonus', '0.4.4')) setConfigEntry('bonus_active', 'X');
152
153 // Members shall see no special rows here
154 $content['special_rows'] = '';
155
156 // Display login bonus and turbo-click bonus
157 if ((isExtensionInstalledAndNewer('bonus', '0.2.2')) && (isExtensionActive('bonus')) && (ifBonusRallyeActive())) {
158         // Total bonus points
159         $content['total'] = getUserData('turbo_bonus') + getUserData('login_bonus') + getUserData('bonus_ref') + getUserData('bonus_order') + getUserData('bonus_stats');
160
161         // Output rows
162         $content['special_rows'] = loadTemplate('member_points_bonus_rows', true, $content);
163 } elseif ((isExtensionActive('bonus')) && (!isBonusRallyeActive())) {
164         // Bonus active rallye deactivated
165         $content['special_rows'] = loadTemplate('member_points_bonus_disabled', true);
166 } elseif ((isAdmin()) && (isExtensionOlder('bonus', '0.2.2')) && (isExtensionActive('bonus'))) {
167         // Please upgrade your bonus extension to v0.2.2 or newer!
168         $content['special_rows'] = loadTemplate('member_points_upgrade');
169 }
170
171 // Load final template
172 if (isExtensionActive('user')) {
173         // Load template when required extension is there
174         loadTemplate('member_points', false, $content);
175 } elseif (isAdmin()) {
176         // Missing extension
177         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
178 } else {
179         // Message for user
180         loadTemplate('admin_settings_saved', false, '{--PROBLEM_POINTS_OVERVIEW_UNAVAILABLE--}');
181 }
182
183 if (isExtensionActive('payout')) {
184         // Payput extension is installed and active so we can check if the user has enougth points
185         outputPayoutList($content['total_points'] - getUserData('used_points'));
186 } // END - if
187
188 // [EOF]
189 ?>