All resets rewritten, missing svn:properties added
[mailer.git] / inc / modules / member / what-refback.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif (!isMember()) {
44         // User is not logged in
45         redirectToIndexMemberOnlyModule();
46 }
47
48 // Is the refback system enabled?
49 if (getConfig('refback_enabled') != 'Y') {
50         // Output message
51         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_REFBACK_DISABLED'));
52         // Abort here
53         return false;
54 } // END - if
55
56 // Add description as navigation point
57 addMenuDescription('member', __FILE__);
58
59 if ((!isExtensionActive('refback')) && (!isAdmin())) {
60         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('refback'));
61         return;
62 } // END - if
63
64 // Was the form submitted?
65 if ((isFormSent('edit')) && (isPostRequestParameterSet('id'))) {
66         // Okay, has the user entered some values?
67         if (isPostRequestParameterSet('percents')) {
68                 // Revert german commta for testing
69                 $percents = convertCommaToDot(postRequestParameter('percents'));
70
71                 // Validate percents
72                 if ((($percents >= getConfig('refback_min_perc')) || (round($percents) == 0)) && ($percents <= getConfig('refback_max_perc'))) {
73                         // Change ref-back for this direct id
74                         $status = updateMemberRefbackPercents(postRequestParameter('id'), postRequestParameter('percents'));
75
76                         // Check status
77                         if (isset($status['ok'])) {
78                                 // No message found
79                                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_REFBACK_DONE'));
80                         } elseif (isset($status['message'])) {
81                                 // Something went wrong with error message
82                                 loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_REFBACK_ERROR_MESSAGE', $status['message']));
83                         } else {
84                                 // No message found
85                                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_REFBACK_ERROR_EMPTY_MESSAGE'));
86                         }
87                 } else {
88                         // Percents out-of-bounds ;-)
89                         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_REFBACK_ERROR_OUT_OF_BOUNDS'));
90                 }
91
92                 // Insert line
93         } else {
94                 // Read data from refback table
95                 $content = getArrayFromUserRefbackData(postRequestParameter('id'));
96
97                 // Load form for editing
98                 loadTemplate('member_refback_edit', false, $content);
99         }
100 } // END - if
101
102 // Load all referal levels
103 $result = SQL_QUERY_ESC("SELECT
104         r.level, r.percents
105 FROM
106         `{?_MYSQL_PREFIX?}_refdepths` AS r
107 WHERE
108         r.level > 0
109 ORDER BY
110         r.level ASC",
111         array(getMemberId()), __FILE__, __LINE__);
112
113 // Are there some entries? (Shall be!)
114 if (SQL_NUMROWS($result) > 0) {
115         // List all levels
116         $OUT = '';
117         while ($content = SQL_FETCHARRAY($result)) {
118                 // Init variables
119                 $rows = '';
120                 $content['counter'] = 0;
121                 $SW = 2;
122
123                 // Check for users ref in this level
124                 foreach (getArrayFromRefbackUserRefs(getMemberId(), $content['level']) as $refRow) {
125                         // Not-deleted account is default
126                         $deleted = false;
127                         if (is_null($refRow['status'])) $deleted = true;
128
129                         // Add/"translate" more content
130                         $refRow['sw']          = $SW;
131                         // @TODO UNUSED: $refRow['status']      = translateUserStatus($refRow['status']);
132                         $refRow['joined']      = generateDateTime($refRow['joined'], '3');
133                         if (empty($refRow['nickname'])) $refRow['nickname'] = '---';
134
135                         // Load row template
136                         if ($deleted === true) {
137                                 $rows .= loadTemplate('member_refback_list_row_deleted', true, $refRow);
138                         } else {
139                                 $rows .= loadTemplate('member_refback_list_row', true, $refRow);
140                         }
141
142                         // Count this ref and switch color
143                         $content['counter']++;
144                         $SW = 3 - $SW;
145                 } // END - foreach
146
147                 // Remember the content
148                 $content['rows']     = $rows;
149
150                 // Load level template
151                 $OUT .= loadTemplate('member_refback_list_level', true, $content);
152         } // END - while
153
154         // Load main template
155         loadTemplate('member_refback_list', false, $OUT);
156 } else {
157         // No entries
158         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_REFBACK_NO_ENTRIES'));
159 }
160
161 // Free result
162 SQL_FREERESULT($result);
163
164 // [EOF]
165 ?>