b3ce3c631e1e76fcaeaf1ec335add52c13ac827e
[mailer.git] / inc / modules / admin / what-config_payouts.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/11/2004 *
4  * ===================                          Last change: 08/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_payouts.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Configure payout types                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auszahlungensarten editieren                     *
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')) || (!isAdmin())) {
42         die();
43 }
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (isPostRequestParameterSet('rate')) setPostRequestParameter('rate', convertCommaToDot(postRequestParameter('rate')));
49
50 if ((isFormSent('add')) && (isPostRequestParameterSet('title')) && (postRequestParameter('rate') > 0)) {
51         // Add new payout type
52         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE type='%s' LIMIT 1",
53         array(postRequestParameter('title')), __FILE__, __LINE__);
54         if (SQL_HASZERONUMS($result)) {
55                 // Add now
56                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_payout_types`
57 (type, rate, min_points, from_account, from_pass, engine_url, engine_ret_ok, engine_ret_failed, pass_enc, allow_url)
58 VALUES ('%s', %d, %d,'%s','%s','%s','%s','%s','%s','%s')",
59                 array(
60                         postRequestParameter('title'),
61                         bigintval(postRequestParameter('rate')),
62                         bigintval(postRequestParameter('min_points')),
63                         postRequestParameter('yacc'),
64                         postRequestParameter('ypass'),
65                         postRequestParameter('yurl'),
66                         postRequestParameter('yrdone'),
67                         postRequestParameter('yrfailed'),
68                         postRequestParameter('ytrans'),
69                         postRequestParameter('allow_url'),
70                 ), __FILE__, __LINE__);
71
72                 // Get message
73                 $message = getMessage('ADMIN_PAYOUT_TYPE_ADDED');
74         } else {
75                 // Free memory
76                 SQL_FREERESULT($result);
77
78                 // Does already exist
79                 $message = '<div class="admin_failed">{--ADMIN_PAYOUT_TYPE_ALREADY--}</div>';
80         }
81 }
82
83 // Payout requests by your members
84 $result_mem = SQL_QUERY("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `status`='NEW' ORDER BY payout_timestamp DESC", __FILE__, __LINE__);
85
86 $display = true;
87 if ((isFormSent('edit')) && (countPostSelection() > 0)) {
88         // Edit payout types
89         if ((isGetRequestParameterSet('ok')) && (getRequestParameter('ok') == 'ok')) {
90                 // Init SQLs
91                 initSqls();
92
93                 // Edit entries
94                 foreach (postRequestParameter('sel') as $id => $sel) {
95                         // Secure id
96                         $id = bigintval($id);
97
98                         // Edit only if something is entered
99                         if ((isPostRequestParameterSet('title', $id)) && (postRequestParameter('rate', $id) > 0)) {
100                                 // Update entry
101                                 addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_payout_types` SET
102         type='%s',
103         rate=%s,
104         min_points=%s,
105         allow_url='%s'
106 WHERE
107         `id`=%s
108 LIMIT 1",
109                                 array(
110                                         postRequestParameter('title', $id),
111                                         convertCommaToDot(postRequestParameter('rate', $id)),
112                                         convertCommaToDot(postRequestParameter('min_points' , $id)),
113                                         postRequestParameter('allow', $id),
114                                         bigintval($id)
115                                 ),__FILE__, __LINE__, false));
116                         }
117                 }
118
119                 // Run all SQLs
120                 runFilterChain('run_sqls');
121
122                 // Get message
123                 $message = getMessage('ADMIN_PAYOUT_ENTRIES_CHANGED');
124         } else {
125                 $display = false; //Suppress any other outputs
126                 $OUT = ''; $SW = 2;
127                 foreach (postRequestParameter('sel') as $id => $sel) {
128                         // Load data
129                         $result = SQL_QUERY_ESC("SELECT type, rate, min_points, allow_url FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
130                         array(bigintval($id)), __FILE__, __LINE__);
131                         list($title, $rate, $min_points, $allow) = SQL_FETCHROW($result);
132                         SQL_FREERESULT($result);
133
134                         // Prepare data for the row template
135                         $content = array(
136                                 'sw'    => $SW,
137                                 'id'    => $id,
138                                 'title' => $title,
139                                 'rate'  => translateComma($rate),
140                                 'min_points'  => translateComma($min_points),
141                                 'allow' => addSelectionBox('yn', $allow, 'allow[' . $id . ']'),
142                         );
143
144                         // Load row template and switch color
145                         $OUT .= loadTemplate('admin_config_payouts_edit_row', true, $content);
146                         $SW = 3 - $SW;
147                 }
148
149                 // Load main template
150                 loadTemplate('admin_config_payouts_edit', false, $OUT);
151         }
152 } elseif ((isFormSent('del')) && (countPostSelection() > 0)) {
153         // Delete payout types
154         if ((isGetRequestParameterSet('ok')) && (getRequestParameter('ok') == 'ok')) {
155                 // Init SQLs
156                 initSqls();
157
158                 // Delete entries
159                 foreach (postRequestParameter('sel') as $id => $sel) {
160                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
161                         array(bigintval($id)), __FILE__, __LINE__, false));
162                 } // END - foreach
163
164                 // Run all SQLs
165                 runFilterChain('run_sqls');
166
167                 // Get message
168                 $message = getMessage('ADMIN_PAYOUT_ENTRIES_DELETED');
169         } else {
170                 $display = false; //Suppress any other outputs
171                 $OUT = ''; $SW = 2;
172                 foreach (postRequestParameter('sel') as $id => $sel) {
173                         // Secure id number
174                         $id = bigintval($id);
175
176                         // Load data
177                         $result = SQL_QUERY_ESC("SELECT type, rate, min_points FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
178                         array($id), __FILE__, __LINE__);
179                         list($title, $rate, $min_points) = SQL_FETCHROW($result);
180                         SQL_FREERESULT($result);
181
182                         // Prepare data for the row template
183                         $content = array(
184                                 'sw'    => $SW,
185                                 'id'    => $id,
186                                 'title' => $title,
187                                 'rate'  => translateComma($rate),
188                                 'min_points'  => translateComma($min_points),
189                         );
190
191                         // Load row template and switch color
192                         $OUT .= loadTemplate('admin_config_payouts_del_row', true, $content);
193                         $SW = 3 - $SW;
194                 }
195
196                 // Load main template
197                 loadTemplate('admin_config_payouts_del', false, $OUT);
198         }
199 }
200
201 if (!empty($message)) {
202         // Output message
203         loadTemplate('admin_settings_saved', false, $message);
204 } // END - if
205
206 // Payout types
207 $result_type = SQL_QUERY("SELECT
208         `id`, `type`, `rate`, `min_points`, `from_account`
209 FROM
210         `{?_MYSQL_PREFIX?}_payout_types`
211 ORDER BY
212         `type` ASC", __FILE__, __LINE__);
213
214 if ((SQL_NUMROWS($result_type) > 0) && ($display)) {
215         // List all payout types
216         $OUT = ''; $SW = 2;
217         while ($content = SQL_FETCHARRAY($result_type)) {
218                 // Prepare data for the row template
219                 $content = array(
220                         'sw'           => $SW,
221                         'id'           => $content['id'],
222                         'from_account' => $content['from_account'],
223                         'type'         => $content['type'],
224                         'rate'         => translateComma($content['rate']),
225                         'min_points'   => translateComma($content['min_points']),
226                 );
227
228                 // Load row template and switch color
229                 $OUT .= loadTemplate('admin_config_payouts_row', true, $content);
230                 $SW = 3 - $SW;
231         } // END - while
232
233         // Free memory
234         SQL_FREERESULT($result_type);
235
236         // Load main template
237         loadTemplate('admin_config_payouts', false, $OUT);
238 }
239
240 // Does your members request payouts?
241 if ((SQL_NUMROWS($result_mem) > 0) && ($display)) {
242         // Members has requested payouts
243         loadTemplate('admin_settings_saved', false, '<a href="{%url=modules.php?module=admin&amp;what=list_payouts%}">{--ADMIN_PAYOUT_LIST_REQUESTS--}</a>');
244 } elseif ($display) {
245         // No member requests so far
246         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_PAYOUT_NO_MEMBER_REQUESTS'));
247 }
248
249 // Free result
250 SQL_FREERESULT($result_mem);
251
252 // Add new payout type
253 if ($display === true) loadTemplate('admin_payout_add_new');
254
255 // [EOF]
256 ?>