15bc77867ae86ab1802b8ac6de3cbcc73874f041
[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 - 2011 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
81         p.`points`,
82         p.`locked_points`,
83         r.`counter`
84 FROM
85         `{?_MYSQL_PREFIX?}_user_points` AS p
86 INNER JOIN
87         `{?_MYSQL_PREFIX?}_refsystem` AS r
88 ON
89         p.`userid`=r.`userid` AND
90         p.`ref_depth`=r.`level`
91 WHERE
92         p.`userid`=%s AND
93         p.`ref_depth`='%s'
94 LIMIT 1",
95                 array(
96                         getMemberId(),
97                         bigintval($content['level'])
98                 ), __FILE__, __LINE__);
99
100         // Do we have an entry?
101         if (SQL_NUMROWS($result_points) == 1) {
102                 // Load data
103                 $content = merge_array($content, SQL_FETCHARRAY($result_points));
104
105                 // Add all entries
106                 $content['total_points']   += $content['points'];
107                 $content['total_locked']   += $content['locked_points'];
108                 $content['total_referals'] += $content['counter'];
109         } // END - if
110
111         // Free result
112         SQL_FREERESULT($result_points);
113
114         // Output row
115         $OUT .= loadTemplate('member_points_row', true, $content);
116 } // END - while
117
118 // Free memory
119 SQL_FREERESULT($result_depths);
120
121 // Put rows to constant for the main template
122 $content['rows'] = $OUT;
123
124 // Remember several values in constants
125 $content['total_points']  = ($content['total_points'] - getUserData('used_points'));
126
127 // Fixes a bug when there is no bonus extension installed
128 if (isExtensionInstalledAndOlder('bonus', '0.4.4')) {
129         setConfigEntry('bonus_active', 'X');
130 } // END - if
131
132 // Members shall see no special rows here
133 $content['special_rows'] = '';
134
135 // Display login bonus and turbo-click bonus
136 if ((isExtensionInstalledAndNewer('bonus', '0.2.2')) && (isExtensionActive('bonus')) && (isBonusRallyeActive())) {
137         // Total bonus points
138         $content['total'] = getUserData('turbo_bonus') + getUserData('login_bonus') + getUserData('bonus_ref') + getUserData('bonus_order') + getUserData('bonus_stats');
139
140         // Output rows
141         $content['special_rows'] = loadTemplate('member_points_bonus_rows', true, $content);
142 } elseif ((isExtensionActive('bonus')) && (!isBonusRallyeActive())) {
143         // Bonus active rallye deactivated
144         $content['special_rows'] = loadTemplate('member_points_bonus_disabled', true);
145 } elseif ((isAdmin()) && (isExtensionOlder('bonus', '0.2.2')) && (isExtensionActive('bonus'))) {
146         // Please upgrade your bonus extension to v0.2.2 or newer!
147         $content['special_rows'] = loadTemplate('member_points_upgrade');
148 }
149
150 // Load final template
151 if (isExtensionActive('user')) {
152         // Load template when required extension is there
153         loadTemplate('member_points', false, $content);
154 } elseif (isAdmin()) {
155         // Missing extension
156         displayMessage(generateExtensionInactiveNotInstalledMessage('user'));
157 } else {
158         // Message for user
159         displayMessage('{--PROBLEM_POINTS_OVERVIEW_UNAVAILABLE--}');
160 }
161
162 if (isExtensionActive('payout')) {
163         // Payput extension is installed and active so we can check if the user has enougth points
164         outputPayoutList($content['total_points'] - getUserData('used_points'));
165 } // END - if
166
167 // [EOF]
168 ?>