28d898f32cde8d0df03387b6813edddd097ab58b
[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 } elseif (getConfig('refback_enabled') != 'Y') {
47         // Output message
48         loadTemplate('admin_settings_saved', false, '{--MEMBER_REFBACK_DISABLED--}');
49
50         // Abort here
51         return false;
52 } // END - if
53
54 // Add description as navigation point
55 addMenuDescription('member', __FILE__);
56
57 if ((!isExtensionActive('refback')) && (!isAdmin())) {
58         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('refback'));
59         return;
60 } // END - if
61
62 // Was the form submitted?
63 if ((isFormSent('edit')) && (isPostRequestParameterSet('id'))) {
64         // Okay, has the user entered some values?
65         if (isPostRequestParameterSet('percents')) {
66                 // Revert german commta for testing
67                 $percents = convertCommaToDot(postRequestParameter('percents'));
68
69                 // Validate percents
70                 if ((($percents >= getConfig('refback_min_perc')) || (round($percents) == 0)) && ($percents <= getConfig('refback_max_perc'))) {
71                         // Change ref-back for this direct id
72                         $status = updateMemberRefbackPercents(postRequestParameter('id'), postRequestParameter('percents'));
73
74                         // Check status
75                         if (isset($status['ok'])) {
76                                 // No message found
77                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_REFBACK_DONE--}');
78                         } elseif (isset($status['message'])) {
79                                 // Something went wrong with error message
80                                 loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_REFBACK_ERROR_MESSAGE', $status['message']));
81                         } else {
82                                 // No message found
83                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_REFBACK_ERROR_EMPTY_MESSAGE--}');
84                         }
85                 } else {
86                         // Percents out-of-bounds ;-)
87                         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_REFBACK_ERROR_OUT_OF_BOUNDS'));
88                 }
89
90                 // Insert line
91         } else {
92                 // Read data from refback table
93                 $content = getArrayFromUserRefbackData(postRequestParameter('id'));
94
95                 // Load form for editing
96                 loadTemplate('member_refback_edit', false, $content);
97         }
98 } // END - if
99
100 // Load all referal levels
101 $result = SQL_QUERY('SELECT
102         r.level, r.percents
103 FROM
104         `{?_MYSQL_PREFIX?}_refdepths` AS r
105 WHERE
106         r.level > 0
107 ORDER BY
108         r.level ASC', __FILE__, __LINE__);
109
110 // Are there some entries? (Shall be!)
111 if (SQL_NUMROWS($result) > 0) {
112         // List all levels
113         $OUT = '';
114         while ($content = SQL_FETCHARRAY($result)) {
115                 // Init variables
116                 $rows = '';
117                 $content['counter'] = 0;
118                 $SW = 2;
119
120                 // Check for users ref in this level
121                 foreach (getArrayFromRefbackUserRefs(getMemberId(), $content['level']) as $refRow) {
122                         // Not-deleted account is default
123                         $deleted = false;
124                         if (is_null($refRow['status'])) $deleted = true;
125
126                         // Add/"translate" more content
127                         $refRow['sw']          = $SW;
128                         // @TODO UNUSED: $refRow['status']      = translateUserStatus($refRow['status']);
129                         $refRow['joined']      = generateDateTime($refRow['joined'], '3');
130                         if (empty($refRow['nickname'])) $refRow['nickname'] = '---';
131
132                         // Load row template
133                         if ($deleted === true) {
134                                 $rows .= loadTemplate('member_refback_list_row_deleted', true, $refRow);
135                         } else {
136                                 $rows .= loadTemplate('member_refback_list_row', true, $refRow);
137                         }
138
139                         // Count this ref and switch color
140                         $content['counter']++;
141                         $SW = 3 - $SW;
142                 } // END - foreach
143
144                 // Remember the content
145                 $content['rows'] = $rows;
146
147                 // Load level template
148                 $OUT .= loadTemplate('member_refback_list_level', true, $content);
149         } // END - while
150
151         // Load main template
152         loadTemplate('member_refback_list', false, $OUT);
153 } else {
154         // No entries
155         loadTemplate('admin_settings_saved', false, '{--MEMBER_REFBACK_NO_ENTRIES--}');
156 }
157
158 // Free result
159 SQL_FREERESULT($result);
160
161 // [EOF]
162 ?>