Damn typo fixed... ;-)
[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 - 2008 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         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         // User is not logged in
45         LOAD_URL("modules.php?module=index");
46 }
47
48 // Add description as navigation point
49 ADD_DESCR("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(getUserId()), __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 (GET_USER_REF_POINTS(getUserId(), $content['level']) as $refRow) {
70                         // Add/"translate" more content
71                         $refRow['sw']          = $SW;
72                         $refRow['points']      = TRANSLATE_COMMA($refRow['points']);
73                         $refRow['status']      = TRANSLATE_STATUS($refRow['status']);
74                         $refRow['unconfirmed'] = TRANSLATE_COMMA($refRow['unconfirmed']);
75                         $refRow['clickrate']   = TRANSLATE_COMMA($refRow['clickrate'], true, 1);
76                         if (empty($refRow['nickname'])) $refRow['nickname'] = "---";
77
78                         // Load row template
79                         $rows .= LOAD_TEMPLATE("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']  = TRANSLATE_COMMA($counter);
88                 $content['percents'] = TRANSLATE_COMMA($content['percents'], true, 1);
89                 $content['rows']     = $rows;
90
91                 // Load level template
92                 $OUT .= LOAD_TEMPLATE("member_ref_list_level", true, $content);
93         } // END - while
94
95         // Load main template
96         LOAD_TEMPLATE("member_ref_list", false, $OUT);
97 } else {
98         // No entries
99         LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_REFBACK_NO_ENTRIES'));
100 }
101
102 // Free result
103 SQL_FREERESULT($result);
104
105 //
106 ?>