- Rewrites to use more the userid than the actual email address when sending
[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 // 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';
69 $content['counter']             = '0';
70 $content['points']              = '0.00000';
71 $content['order_points']        = '0.00000';
72 $content['locked_points']       = '0.00000';
73 $content['locked_order_points'] = '0.00000';
74
75 // And output variable
76 $OUT = '';
77
78 // Load ref levels
79 while ($data = SQL_FETCHARRAY($result_depths)) {
80         // Merge it together
81         $content = merge_array($content, $data);
82
83         // Default for referal level > 0
84         $depth = 'p.`ref_depth`=%s';
85         if (is_null($content['level'])) {
86                 $depth = 'p.`ref_depth` IS NULL';
87         } // END - if
88
89         // Load referal points
90         $result_points = SQL_QUERY_ESC("SELECT
91         p.`points`,
92         p.`order_points`,
93         p.`locked_points`,
94         p.`locked_order_points`,
95         r.`counter`
96 FROM
97         `{?_MYSQL_PREFIX?}_user_points` AS p
98 LEFT JOIN
99         `{?_MYSQL_PREFIX?}_refsystem` AS r
100 ON
101         p.`userid`=r.`userid` AND
102         p.`ref_depth`=r.`level`
103 WHERE
104         p.`userid`=%s AND
105         ".$depth."
106 LIMIT 1",
107                 array(
108                         getMemberId(),
109                         makeZeroToNull($content['level'])
110                 ), __FILE__, __LINE__);
111
112         // Do we have an entry?
113         if (SQL_NUMROWS($result_points) == 1) {
114                 // Load data
115                 $content = merge_array($content, SQL_FETCHARRAY($result_points));
116
117                 // Add all entries
118                 $content['part_points']       += $content['points'];
119                 $content['part_order']        += $content['order_points'];
120                 $content['part_locked']       += $content['locked_points'];
121                 $content['part_locked_order'] += $content['locked_order_points'];
122                 $content['part_referals']     += $content['counter'];
123         } // END - if
124
125         // Free result
126         SQL_FREERESULT($result_points);
127
128         // Output row
129         $OUT .= loadTemplate('member_points_row', true, $content);
130 } // END - while
131
132 // Free memory
133 SQL_FREERESULT($result_depths);
134
135 // Add userid
136 $content['userid'] = getMemberId();
137
138 // Put rows to constant for the main template
139 $content['rows'] = $OUT;
140
141 // Fixes a bug when there is no bonus extension installed
142 if (isExtensionInstalledAndOlder('bonus', '0.4.4')) {
143         setConfigEntry('bonus_active', 'X');
144 } // END - if
145
146 // Members shall see no special rows here
147 $content['special_rows'] = '';
148
149 // Display login bonus and turbo-click bonus
150 if ((isExtensionInstalledAndNewer('bonus', '0.2.2')) && (isExtensionActive('bonus')) && (isBonusRallyeActive())) {
151         // Total bonus points
152         $content['bonus_total_points'] = getUserData('turbo_bonus') + getUserData('login_bonus') + getUserData('bonus_ref') + getUserData('bonus_order') + getUserData('bonus_stats');
153
154         // Output rows
155         $content['special_rows'] = loadTemplate('member_points_bonus_rows', true, $content);
156 } elseif ((isExtensionActive('bonus')) && (!isBonusRallyeActive())) {
157         // Bonus active rallye deactivated
158         $content['special_rows'] = loadTemplate('member_points_bonus_disabled', true);
159 } elseif ((isAdmin()) && (isExtensionInstalledAndOlder('bonus', '0.2.2')) && (isExtensionActive('bonus'))) {
160         // Please upgrade your bonus extension to v0.2.2 or newer!
161         $content['special_rows'] = loadTemplate('member_points_upgrade');
162 }
163
164 // Load final template
165 if (isExtensionActive('user')) {
166         // Load template when required extension is there
167         loadTemplate('member_points', false, $content);
168 } elseif (isAdmin()) {
169         // Missing extension
170         displayMessage(generateExtensionInactiveNotInstalledMessage('user'));
171 } else {
172         // Message for user
173         displayMessage('{--PROBLEM_POINTS_OVERVIEW_UNAVAILABLE--}');
174 }
175
176 if (isExtensionActive('payout')) {
177         // Payput extension is installed and active so we can check if the user has enougth points
178         outputPayoutList($content['part_points'] - getUserData('used_points'));
179 } // END - if
180
181 // [EOF]
182 ?>