e0d6552467a51b0697e4504f4b17d7ee6597859d
[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 } elseif ((!EXT_IS_ACTIVE("reflist")) && (!IS_ADMIN())) {
42         // Extension "reflist" is not active
43         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "reflist");
44         return;
45 }
46
47 // Add description as navigation point
48 ADD_DESCR("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($GLOBALS['userid']), __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 (GET_USER_REF_POINTS($GLOBALS['userid'], $content['level']) as $refRow) {
69                         // Add/"translate" more content
70                         $refRow['sw']          = $SW;
71                         $refRow['points']      = TRANSLATE_COMMA($refRow['points']);
72                         $refRow['status']      = TRANSLATE_STATUS($refRow['status']);
73                         $refRow['unconfirmed'] = TRANSLATE_COMMA($refRow['unconfirmed']);
74                         $refRow['clickrate']   = TRANSLATE_COMMA($refRow['clickrate'], true, 1);
75                         if (empty($refRow['nickname'])) $refRow['nickname'] = "---";
76
77                         // Load row template
78                         $rows .= LOAD_TEMPLATE("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']  = TRANSLATE_COMMA($counter);
87                 $content['percents'] = TRANSLATE_COMMA($content['percents']);
88                 $content['rows']     = $rows;
89
90                 // Load level template
91                 $OUT .= LOAD_TEMPLATE("member_ref_list_level", true, $content);
92         } // END - while
93
94         // Load main template
95         LOAD_TEMPLATE("member_ref_list", false, $OUT);
96 } else {
97         // No entries
98         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_REFBACK_NO_ENTRIES);
99 }
100
101 // Free result
102 SQL_FREERESULT($result);
103
104 //
105 ?>