7797639cb9929f484759303cbe725d36f15d146d
[mailer.git] / inc / modules / member / what-reflist.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * 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         // User is not logged in
45         redirectToIndexMemberOnlyModule();
46 }
47
48 // Add description as navigation point
49 addMenuDescription('member', __FILE__);
50
51 // Load all referal levels
52 $result = SQL_QUERY_ESC("SELECT r.level, r.percents
53 FROM `{?_MYSQL_PREFIX?}_refdepths` AS r
54 WHERE r.level > 0
55 ORDER BY r.level ASC",
56 array(getMemberId()), __FILE__, __LINE__);
57
58 // Are there some entries? (Shall be!)
59 if (SQL_NUMROWS($result) > 0) {
60         // List all levels
61         $OUT = '';
62         while ($content = SQL_FETCHARRAY($result)) {
63                 // Init variables
64                 $rows = '';
65                 $counter = '0';
66                 $SW = 2;
67
68                 // Check for users ref in this level
69                 foreach (getUserReferalPoints(getMemberId(), $content['level']) as $refRow) {
70                         // Add/"translate" more content
71                         $refRow['sw']          = $SW;
72                         $refRow['points']      = translateComma($refRow['points']);
73                         $refRow['status']      = translateUserStatus($refRow['status']);
74                         $refRow['unconfirmed'] = translateComma($refRow['unconfirmed']);
75                         $refRow['clickrate']   = translateComma($refRow['clickrate'], true, 1);
76                         if (empty($refRow['nickname'])) $refRow['nickname'] = '---';
77
78                         // Load row template
79                         $rows .= loadTemplate('member_ref_list_row', true, $refRow);
80
81                         // Count this ref and switch color
82                         $counter++;
83                         $SW = 3 - $SW;
84                 } // END - foreach
85
86                 // Remember the content
87                 $content['counter']  = translateComma($counter);
88                 $content['percents'] = translateComma($content['percents'], true, 1);
89                 $content['rows']     = $rows;
90
91                 // Load level template
92                 $OUT .= loadTemplate('member_ref_list_level', true, $content);
93         } // END - while
94
95         // Load main template
96         loadTemplate('member_ref_list', false, $OUT);
97 } else {
98         // No entries
99         loadTemplate('admin_settings_saved', false, '{--MEMBER_REFBACK_NO_ENTRIES--}');
100 }
101
102 // Free result
103 SQL_FREERESULT($result);
104
105 //
106 ?>