d4b3e97f5e450ded54fe9d46a9c01706b612535a
[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('SELECT
53         `level`, `percents`
54 FROM
55         `{?_MYSQL_PREFIX?}_refdepths`
56 WHERE
57         `level` > 0
58 ORDER BY
59         `level` ASC', __FILE__, __LINE__);
60
61 // Are there some entries? (Shall be!)
62 if (SQL_NUMROWS($result) > 0) {
63         // List all levels
64         $OUT = '';
65         while ($content = SQL_FETCHARRAY($result)) {
66                 // Init variables
67                 $rows = '';
68                 $counter = '0';
69
70                 // Check for users ref in this level
71                 foreach (getUserReferalPoints(getMemberId(), $content['level']) as $refRow) {
72                         // Add/"translate" more content
73                         $refRow['clickrate']   = translateComma($refRow['clickrate'], true, 1);
74
75                         // Load row template
76                         $rows .= loadTemplate('member_ref_list_row', true, $refRow);
77
78                         // Count this ref and switch color
79                         $counter++;
80                 } // END - foreach
81
82                 // Remember the content
83                 $content['counter']  = $counter;
84                 $content['percents'] = translateComma($content['percents'], true, 1);
85                 $content['rows']     = $rows;
86
87                 // Load level template
88                 $OUT .= loadTemplate('member_ref_list_level', true, $content);
89         } // END - while
90
91         // Load main template
92         loadTemplate('member_ref_list', false, $OUT);
93 } else {
94         // No entries
95         loadTemplate('admin_settings_saved', false, '{--MEMBER_REFBACK_NO_ENTRIES--}');
96 }
97
98 // Free result
99 SQL_FREERESULT($result);
100
101 // [EOF]
102 ?>