Fixes and cleanups
[mailer.git] / inc / modules / admin / what-edit_emails.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
4  * ===================                          Last change: 04/09/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-edit_emails.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Edit ordered mails e.g. redirecting the URL      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Werbebuchungen aendern (z.B. umleiten der URL)   *
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 ((isFormSent()) && (!isPostRequestElementSet('id'))) {
47         unsetPostRequestElement('ok');
48 } // END - if
49
50 // Form sent or anything else? ;-)
51 if ((isFormSent()) && (isPostRequestElementSet('mid'))) {
52         // Make mail editable...
53         $result = SQL_QUERY_ESC("SELECT
54         `id`,`sender` AS `userid`,`subject`,`text`,`url`
55 FROM
56         `{?_MYSQL_PREFIX?}_pool`
57 WHERE
58         `id`=%s
59 LIMIT 1",
60                 array(bigintval(postRequestElement('mid'))), __FILE__, __LINE__);
61
62         // Fetch row
63         $content = SQL_FETCHARRAY($result);
64
65         // Free result
66         SQL_FREERESULT($result);
67
68         // Load template
69         loadTemplate('admin_edit_email', false, $content);
70 } elseif (isGetRequestElementSet('mid')) {
71         // Make also this email editable
72         $result = SQL_QUERY_ESC("SELECT
73         `id`,`sender` AS `userid`,`subject`,`text`,`url`
74 FROM
75         `{?_MYSQL_PREFIX?}_pool`
76 WHERE
77         `id`=%s
78 LIMIT 1",
79                 array(bigintval(getRequestElement('mid'))), __FILE__, __LINE__);
80
81         // Fetch row
82         $content = SQL_FETCHARRAY($result);
83
84         // Free result
85         SQL_FREERESULT($result);
86
87         // Load template
88         loadTemplate('admin_edit_email', false, $content);
89 } elseif (isGetRequestElementSet('bid')) {
90                 // Make also this email editable
91                 $result = SQL_QUERY_ESC("SELECT
92         `id`,`subject`,`text`,`url`
93 FROM
94         `{?_MYSQL_PREFIX?}_bonus`
95 WHERE
96         `id`=%s
97 LIMIT 1",
98                 array(bigintval(getRequestElement('bid'))), __FILE__, __LINE__);
99
100         // Fetch row
101         $content = SQL_FETCHARRAY($result);
102
103         // Free result
104         SQL_FREERESULT($result);
105
106         // Load template
107         loadTemplate('admin_edit_bonus_email', false, $content);
108 } elseif (isFormSent('save')) {
109         // Save changes
110         if (isPostRequestElementSet('mid')) {
111                 // Update pool
112                 SQL_QUERY_ESC("UPDATE
113         `{?_MYSQL_PREFIX?}_pool`
114 SET
115         `subject`='%s',
116         `text`='%s',
117         `url`='%s'
118 WHERE
119         `id`=%s
120 LIMIT 1",
121                         array(
122                                 postRequestElement('subject'),
123                                 postRequestElement('text'),
124                                 postRequestElement('url'),
125                                 bigintval(postRequestElement('mid')),
126                         ), __FILE__, __LINE__);
127
128                 if (!SQL_HASZEROAFFECTED()) {
129                         $content = '{--ADMIN_EMAIL_CHANGES_SAVED--}';
130                 } else {
131                         $content = '<span class="notice">{--ADMIN_EMAIL_CHANGES_NOT_SAVED--}</span>';
132                 }
133         } elseif (isPostRequestElementSet('bid')) {
134                 // Update pool
135                 SQL_QUERY_ESC("UPDATE
136         `{?_MYSQL_PREFIX?}_bonus`
137 SET
138         `subject`='%s',
139         `text`='%s',
140         `url`='%s'
141 WHERE
142         `id`=%s
143 LIMIT 1",
144                         array(
145                                 postRequestElement('subject'),
146                                 postRequestElement('text'),
147                                 postRequestElement('url'),
148                                 bigintval(postRequestElement('bid')),
149                         ), __FILE__, __LINE__);
150
151                 if (!SQL_HASZEROAFFECTED()) {
152                         $content = '{--ADMIN_EMAIL_CHANGES_SAVED--}';
153                 } else {
154                         $content = '<span class="notice">{--ADMIN_EMAIL_CHANGES_NOT_SAVED--}</span>';
155                 }
156         } else {
157                 // No valid action
158                 $content = '<span class="notice">{--ADMIN_EDIT_EMAIL_FAILED--}</span>';
159         }
160
161         // Display message
162         displayMessage($content);
163 } else {
164         // Query the pool
165         $result = SQL_QUERY('SELECT
166         `id`,`sender` AS `userid`,`subject`,`payment_id`,`cat_id`
167 FROM
168         `{?_MYSQL_PREFIX?}_pool`
169 ORDER BY
170         `timestamp` ASC', __FILE__, __LINE__);
171
172         // Entries found?
173         if (!SQL_HASZERONUMS($result)) {
174                 // There are mail orders available
175                 $OUT = '';
176                 while ($content = SQL_FETCHARRAY($result)) {
177                         // Load row template and switch colors
178                         $OUT .= loadTemplate('admin_edit_email_row', true, $content);
179                 } // END - while
180
181                 // Free memory
182                 SQL_FREERESULT($result);
183
184                 // Load email template
185                 loadTemplate('admin_edit_email_select', false, $OUT);
186         } else {
187                 // No mail orders left in pool
188                 displayMessage('{--ADMIN_NO_MAILS_IN_POOL--}');
189         }
190 }
191
192 // [EOF]
193 ?>