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