More fixes from profi-concept for extension loading, guest/member menu and smaller...
[mailer.git] / inc / modules / member / what-refback.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/09/2008 *
4  * ================                             Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-refback.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("refback")) && (!IS_ADMIN())) {
42         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "refback");
43         return;
44 }
45
46 // Is the refback system enabled?
47 if ($_CONFIG['refback_enabled'] == "N") {
48         // Output message
49         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_REFBACK_DISABLED);
50         // Abort here
51         return false;
52 } // END - if
53
54 // Add description as navigation point
55 ADD_DESCR("member", __FILE__);
56
57 // Was the form submitted?
58 if ((isset($_POST['edit'])) && (isset($_POST['id']))) {
59         // Okay, has the user entered some values?
60         if (isset($_POST['percents'])) {
61                 // Revert german commta for testing
62                 $percents = REVERT_COMMA($_POST['percents']);
63
64                 // Validate percents
65                 if ((($percents >= $_CONFIG['refback_min_perc']) || (round($percents) == 0)) && ($percents <= $_CONFIG['refback_max_perc'])) {
66                         // Change ref-back for this direct id
67                         $status = REFBACK_CHANGE_MEMBER_PERCENTS($_POST['id'], $_POST['percents']);
68
69                         // Check status
70                         if (isset($status['ok'])) {
71                                 // No message found
72                                 LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_REFBACK_DONE);
73                         } elseif (isset($status['message'])) {
74                                 // Something went wrong with error message
75                                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(MEMBER_REFBACK_ERROR_MESSAGE, $status['message']));
76                         } else {
77                                 // No message found
78                                 LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_REFBACK_ERROR_EMPTY_MESSAGE);
79                         }
80                 } else {
81                         // Percents out-of-bounds ;-)
82                         LOAD_TEMPLATE("admin_settings_saved", false, sprintf(MEMBER_REFBACK_ERROR_OUT_OF_BOUNDS, $_CONFIG['refback_min_perc'], $_CONFIG['refback_max_perc']));
83                 }
84
85                 // Insert line
86                 OUTPUT_HTML("<br />");
87         } else {
88                 // Read data from refback table
89                 $content = GET_USER_REF_ENTRY($_POST['id']);
90
91                 // Translate comma
92                 $content['refback'] = TRANSLATE_COMMA($content['refback']);
93                 $content['min']     = TRANSLATE_COMMA($_CONFIG['refback_min_perc'].".0");
94                 $content['max']     = TRANSLATE_COMMA($_CONFIG['refback_max_perc'].".0");
95
96                 // Load form for editing
97                 LOAD_TEMPLATE("member_refback_edit", false, $content);
98         }
99 } // END - if
100
101 // Load all referal levels
102 $result = SQL_QUERY_ESC("SELECT r.level, r.percents
103 FROM "._MYSQL_PREFIX."_refdepths AS r
104 WHERE r.level > 0
105 ORDER BY r.level ASC",
106         array($GLOBALS['userid']), __FILE__, __LINE__);
107
108 // Are there some entries? (Shall be!)
109 if (SQL_NUMROWS($result) > 0) {
110         // List all levels
111         $OUT = "";
112         while ($content = SQL_FETCHARRAY($result)) {
113                 // Init variables
114                 $rows = "";
115                 $counter = 0;
116                 $SW = 2;
117
118                 // Check for users ref in this level
119                 foreach (GET_USER_REFS($GLOBALS['userid'], $content['level']) as $refRow) {
120                         // Not-deleted account is default
121                         $deleted = false;
122                         if (is_null($refRow['status'])) $deleted = true;
123
124                         // Add/"translate" more content
125                         $refRow['sw']      = $SW;
126                         $refRow['points']  = TRANSLATE_COMMA($refRow['points']);
127                         $refRow['refback'] = TRANSLATE_COMMA($refRow['refback']);
128                         $refRow['status']  = TRANSLATE_STATUS($refRow['status']);
129                         if (empty($refRow['nickname'])) $refRow['nickname'] = "---";
130
131                         // Load row template
132                         if ($deleted) {
133                                 $rows .= LOAD_TEMPLATE("member_refback_list_row_deleted", true, $refRow);
134                         } else {
135                                 $rows .= LOAD_TEMPLATE("member_refback_list_row", true, $refRow);
136                         }
137
138                         // Count this ref and switch color
139                         $counter++;
140                         $SW = 3 - $SW;
141                 } // END - foreach
142
143                 // Remember the content
144                 $content['counter']  = TRANSLATE_COMMA($counter);
145                 $content['percents'] = TRANSLATE_COMMA($content['percents']);
146                 $content['rows']     = $rows;
147
148                 // Load level template
149                 $OUT .= LOAD_TEMPLATE("member_refback_list_level", true, $content);
150         } // END - while
151
152         // Load main template
153         LOAD_TEMPLATE("member_refback_list", false, $OUT);
154 } else {
155         // No entries
156         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_REFBACK_NO_ENTRIES);
157 }
158
159 // Free result
160 SQL_FREERESULT($result);
161
162 //
163 ?>