More bugs fixed, thanks to Piter01: :-)
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_MEMBER()) {
39         // User is not logged in
40         LOAD_URL("modules.php?module=index");
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("member", __FILE__);
45
46 // Load all referal levels
47 $result = SQL_QUERY_ESC("SELECT r.level, r.percents
48 FROM "._MYSQL_PREFIX."_refdepths AS r
49 WHERE r.level > 0
50 ORDER BY r.level ASC",
51         array($GLOBALS['userid']), __FILE__, __LINE__);
52
53 // Are there some entries? (Shall be!)
54 if (SQL_NUMROWS($result) > 0) {
55         // List all levels
56         $OUT = "";
57         while ($content = SQL_FETCHARRAY($result)) {
58                 // Init variables
59                 $rows = "";
60                 $counter = 0;
61                 $SW = 2;
62
63                 // Check for users ref in this level
64                 foreach (GET_USER_REF_POINTS($GLOBALS['userid'], $content['level']) as $refRow) {
65                         // Add/"translate" more content
66                         $refRow['sw']          = $SW;
67                         $refRow['points']      = TRANSLATE_COMMA($refRow['points']);
68                         $refRow['status']      = TRANSLATE_STATUS($refRow['status']);
69                         $refRow['unconfirmed'] = TRANSLATE_COMMA($refRow['unconfirmed']);
70                         $refRow['clickrate']   = TRANSLATE_COMMA($refRow['clickrate'], true, 1);
71                         if (empty($refRow['nickname'])) $refRow['nickname'] = "---";
72
73                         // Load row template
74                         $rows .= LOAD_TEMPLATE("member_ref_list_row", true, $refRow);
75
76                         // Count this ref and switch color
77                         $counter++;
78                         $SW = 3 - $SW;
79                 } // END - foreach
80
81                 // Remember the content
82                 $content['counter']  = TRANSLATE_COMMA($counter);
83                 $content['percents'] = TRANSLATE_COMMA($content['percents'], true, 1);
84                 $content['rows']     = $rows;
85
86                 // Load level template
87                 $OUT .= LOAD_TEMPLATE("member_ref_list_level", true, $content);
88         } // END - while
89
90         // Load main template
91         LOAD_TEMPLATE("member_ref_list", false, $OUT);
92 } else {
93         // No entries
94         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_REFBACK_NO_ENTRIES);
95 }
96
97 // Free result
98 SQL_FREERESULT($result);
99
100 //
101 ?>