A lot texts rewritten and exclamation signs removed
[mailer.git] / inc / modules / member / what-reflist.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/09/2008 *
4  * ================                             Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-reflist.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Refback setup                                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Refback-Einstellungen                            *
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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } elseif (!isMember()) {
43         // User is not logged in
44         redirectToIndexMemberOnlyModule();
45 }
46
47 // Add description as navigation point
48 addMenuDescription('member', __FILE__);
49
50 // Load all referal levels
51 $result = SQL_QUERY_ESC("SELECT r.level, r.percents
52 FROM `{?_MYSQL_PREFIX?}_refdepths` AS r
53 WHERE r.level > 0
54 ORDER BY r.level ASC",
55 array(getUserId()), __FILE__, __LINE__);
56
57 // Are there some entries? (Shall be!)
58 if (SQL_NUMROWS($result) > 0) {
59         // List all levels
60         $OUT = '';
61         while ($content = SQL_FETCHARRAY($result)) {
62                 // Init variables
63                 $rows = '';
64                 $counter = 0;
65                 $SW = 2;
66
67                 // Check for users ref in this level
68                 foreach (getUserReferalPoints(getUserId(), $content['level']) as $refRow) {
69                         // Add/"translate" more content
70                         $refRow['sw']          = $SW;
71                         $refRow['points']      = translateComma($refRow['points']);
72                         $refRow['status']      = translateUserStatus($refRow['status']);
73                         $refRow['unconfirmed'] = translateComma($refRow['unconfirmed']);
74                         $refRow['clickrate']   = translateComma($refRow['clickrate'], true, 1);
75                         if (empty($refRow['nickname'])) $refRow['nickname'] = '---';
76
77                         // Load row template
78                         $rows .= loadTemplate('member_ref_list_row', true, $refRow);
79
80                         // Count this ref and switch color
81                         $counter++;
82                         $SW = 3 - $SW;
83                 } // END - foreach
84
85                 // Remember the content
86                 $content['counter']  = translateComma($counter);
87                 $content['percents'] = translateComma($content['percents'], true, 1);
88                 $content['rows']     = $rows;
89
90                 // Load level template
91                 $OUT .= loadTemplate('member_ref_list_level', true, $content);
92         } // END - while
93
94         // Load main template
95         loadTemplate('member_ref_list', false, $OUT);
96 } else {
97         // No entries
98         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_REFBACK_NO_ENTRIES'));
99 }
100
101 // Free result
102 SQL_FREERESULT($result);
103
104 //
105 ?>