2 /************************************************************************
3 * MXChange v0.2.1 Start: 09/09/2008 *
4 * ================ Last change: 09/09/2008 *
6 * -------------------------------------------------------------------- *
7 * File : what-reflist.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Refback setup *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Refback-Einstellungen *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
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");
47 // Add description as navigation point
48 ADD_DESCR("member", __FILE__);
50 // Load all referal levels
51 $result = SQL_QUERY_ESC("SELECT r.level, r.percents
52 FROM "._MYSQL_PREFIX."_refdepths AS r
54 ORDER BY r.level ASC",
55 array($GLOBALS['userid']), __FILE__, __LINE__);
57 // Are there some entries? (Shall be!)
58 if (SQL_NUMROWS($result) > 0) {
61 while ($content = SQL_FETCHARRAY($result)) {
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
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'] = "---";
78 $rows .= LOAD_TEMPLATE("member_ref_list_row", true, $refRow);
80 // Count this ref and switch color
85 // Remember the content
86 $content['counter'] = TRANSLATE_COMMA($counter);
87 $content['percents'] = TRANSLATE_COMMA($content['percents']);
88 $content['rows'] = $rows;
90 // Load level template
91 $OUT .= LOAD_TEMPLATE("member_ref_list_level", true, $content);
95 LOAD_TEMPLATE("member_ref_list", false, $OUT);
98 LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_REFBACK_NO_ENTRIES);
102 SQL_FREERESULT($result);