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