Large code cleanups:
[mailer.git] / inc / modules / admin / what-payments.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
4  * ===================                          Last change: 12/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-payments.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Payments (points) for confirmed mails            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verguetungen fuer best&auml;tigte Mails              *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 if (((!isPostRequestElementSet('t_wait')) || (!isPostRequestElementSet('payment'))) && (isGetRequestElementSet('do')) && (getRequestElement('do') == 'add')) {
47         unsetPostRequestElement('ok');
48 } // END - if
49
50 if (isFormSent()) {
51         switch (getRequestElement('do')) {
52                 case 'add':
53                         addSql("INSERT INTO `{?_MYSQL_PREFIX?}_payments` (`time`,`payment`,`mail_title`,`price`) VALUES ('".postRequestElement('t_wait')."','".postRequestElement('payment')."','".postRequestElement('title')."','".postRequestElement('price')."')");
54                         if (countSumTotalData(postRequestElement('t_wait'), 'payments', 'id', 'time', true) == 1) {
55                                 // Re-init the array here
56                                 initSqls();
57                         } // END - if
58                         break;
59
60                 case 'edit':
61                         foreach (postRequestElement('time') as $id => $value) {
62                                 addSql("UPDATE `{?_MYSQL_PREFIX?}_payments` SET `time`='" . $value . "',`payment`='".postRequestElement('payment', $id)."', price='".postRequestElement('price', $id)."', mail_title='".postRequestElement('mail_title', $id)."' WHERE `id`='".$id."' LIMIT 1");
63                         } // END - foreach
64                         break;
65
66                 case 'delete':
67                         foreach (postRequestElement('id') as $id => $value) {
68                                 addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=" . bigintval($id) . " LIMIT 1");
69                         } // END - foreach
70                         break;
71         } // END - switch
72
73         // Save settings
74         if (countSqls() > 0) {
75                 // Run all queries
76                 runFilterChain('run_sqls');
77                 $content = '<span class="notice">{--SETTINGS_SAVED--}</span>';
78         } else {
79                 // Nothing has changed!
80                 $content = '<span class="notice">{--SETTINGS_NOT_SAVED--}</span>';
81         }
82
83         // Output template
84         displayMessage($content);
85 } elseif ((isFormSent('delete')) && (ifPostContainsSelections())) {
86         // Delete entries here
87         $OUT = '';
88         foreach (postRequestElement('sel') as $id => $value) {
89                 $result = SQL_QUERY_ESC("SELECT `id`,`time`,`mail_title` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
90                         array(bigintval($id)), __FILE__, __LINE__);
91                 $content = SQL_FETCHARRAY($result);
92
93                 // Free result
94                 SQL_FREERESULT($result);
95
96                 // Load row template and switch colors
97                 $OUT .= loadTemplate('admin_delete_payments_row', true, $content);
98         } // END - foreach
99
100         // Load main template
101         loadTemplate('admin_delete_payments', false, $OUT);
102 } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
103         // Edit entries
104         $OUT = '';
105         foreach (postRequestElement('sel') as $id => $value) {
106                 $result = SQL_QUERY_ESC("SELECT `id`,`time`,`payment`,`mail_title`,`price` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
107                         array(bigintval($id)), __FILE__, __LINE__);
108                 $content = SQL_FETCHARRAY($result);
109
110                 // Free result
111                 SQL_FREERESULT($result);
112
113                 // Load row template and switch colors
114                 $OUT .= loadTemplate('admin_edit_payments_row', true, $content);
115         } // END - foreach
116
117         // Load main template
118         loadTemplate('admin_edit_payments', false, $OUT);
119 } else {
120         // Referral levels
121         $result = SQL_QUERY("SELECT `id`,`time`,`payment`,`mail_title`,`price` FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `time` ASC", __FILE__, __LINE__);
122         if (!SQL_HASZERONUMS($result)) {
123                 // Make referral levels editable and deletable
124                 $OUT = '';
125
126                 // List already existing categories for editing
127                 while ($content = SQL_FETCHARRAY($result)) {
128                         // Load row template and switch colors
129                         $OUT .= loadTemplate('admin_list_payments_row', true, $content);
130                 } // END - switch
131
132                 // Free memory
133                 SQL_FREERESULT($result);
134
135                 // Load main template
136                 loadTemplate('admin_list_payments', false, $OUT);
137         } // END - if
138
139         // Form for adding new referral levels
140         loadTemplate('admin_add_payment');
141 }
142
143 // [EOF]
144 ?>