More rewrites to make use of (cached) wrapper functions
[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  * 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 ((isFormSent()) && (!isPostRequestParameterSet('id'))) {
49         unsetPostRequestParameter('ok');
50 } // END - if
51
52 // Query the pool
53 $result = SQL_QUERY("SELECT
54         `id`, `sender`, `subject`, `payment_id`, `cat_id`
55 FROM
56         `{?_MYSQL_PREFIX?}_pool`
57 ORDER BY
58         `timestamp` ASC", __FILE__, __LINE__);
59
60 // Entries found?
61 if (!SQL_HASZERONUMS($result)) {
62         if (isFormSent()) {
63                 // Make mail editable...
64                 $result = SQL_QUERY_ESC("SELECT `id`, `subject`, `text`, `url` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
65                         array(bigintval(postRequestParameter('id'))), __FILE__, __LINE__);
66
67                 // Fetch row
68                 $content = SQL_FETCHARRAY($result);
69
70                 // Free result
71                 SQL_FREERESULT($result);
72
73                 // Load template
74                 loadTemplate('admin_edit_email', false, $content);
75         } elseif (isPostRequestParameterSet('save')) {
76                 // Save changes
77                 SQL_QUERY_ESC("UPDATE
78         `{?_MYSQL_PREFIX?}_pool`
79 SET
80         `subject`='%s',
81         `text`='%s',
82         `url`='%s'
83 WHERE
84         `id`=%s
85 LIMIT 1",
86                         array(
87                                 postRequestParameter('subject'),
88                                 postRequestParameter('text'),
89                                 postRequestParameter('url'),
90                                 bigintval(postRequestParameter('id')),
91                         ), __FILE__, __LINE__);
92
93                 if (SQL_AFFECTEDROWS() == 1) {
94                         $content = '{--SETTINGS_SAVED--}';
95                 } else {
96                         $content = '<span class="admin_failed">{--SETTINGS_NOT_SAVED--}</span>';
97                 }
98
99                 // Display message
100                 loadTemplate('admin_settings_saved', false, $content);
101         } else {
102                 // There are mail orders available
103                 $OUT = '';
104                 while ($content = SQL_FETCHARRAY($result)) {
105                         // Load row template and switch colors
106                         $OUT .= loadTemplate('admin_edit_email_row', true, $content);
107                 } // END - while
108
109                 // Free memory
110                 SQL_FREERESULT($result);
111
112                 // Load email template
113                 loadTemplate('admin_edit_email_select', false, $OUT);
114         }
115 } else {
116         // No mail orders left in pool
117         loadTemplate('admin_settings_saved', false, '<span class="admin_failed">{--ADMIN_NO_MAILS_IN_POOL--}</span>');
118 }
119
120 // [EOF]
121 ?>