Fixed obsolete (?) links to category/payment
[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 } // END - if
44
45 // Add description as navigation point
46 addYouAreHereLink('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` AS `userid`, `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
65         `id`, `sender` AS `userid`, `subject`, `text`, `url`
66 FROM
67         `{?_MYSQL_PREFIX?}_pool`
68 WHERE
69         `id`=%s
70 LIMIT 1",
71                         array(bigintval(postRequestParameter('id'))), __FILE__, __LINE__);
72
73                 // Fetch row
74                 $content = SQL_FETCHARRAY($result);
75
76                 // Free result
77                 SQL_FREERESULT($result);
78
79                 // Load template
80                 loadTemplate('admin_edit_email', false, $content);
81         } elseif (isPostRequestParameterSet('save')) {
82                 // Save changes
83                 SQL_QUERY_ESC("UPDATE
84         `{?_MYSQL_PREFIX?}_pool`
85 SET
86         `subject`='%s',
87         `text`='%s',
88         `url`='%s'
89 WHERE
90         `id`=%s
91 LIMIT 1",
92                         array(
93                                 postRequestParameter('subject'),
94                                 postRequestParameter('text'),
95                                 postRequestParameter('url'),
96                                 bigintval(postRequestParameter('id')),
97                         ), __FILE__, __LINE__);
98
99                 if (!SQL_HASZEROAFFECTED()) {
100                         $content = '{--SETTINGS_SAVED--}';
101                 } else {
102                         $content = '<span class="notice">{--SETTINGS_NOT_SAVED--}</span>';
103                 }
104
105                 // Display message
106                 loadTemplate('admin_settings_saved', false, $content);
107         } else {
108                 // There are mail orders available
109                 $OUT = '';
110                 while ($content = SQL_FETCHARRAY($result)) {
111                         // Load row template and switch colors
112                         $OUT .= loadTemplate('admin_edit_email_row', true, $content);
113                 } // END - while
114
115                 // Free memory
116                 SQL_FREERESULT($result);
117
118                 // Load email template
119                 loadTemplate('admin_edit_email_select', false, $OUT);
120         }
121 } else {
122         // No mail orders left in pool
123         loadTemplate('admin_settings_saved', false, '<span class="notice">{--ADMIN_NO_MAILS_IN_POOL--}</span>');
124 }
125
126 // [EOF]
127 ?>