]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/what-edit_emails.php
Rewrites/fixes for handling config entries in SQLs
[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 $result = SQL_QUERY("SELECT id, sender, subject, payment_id, cat_id FROM `{?_MYSQL_PREFIX?}_pool` ORDER BY timestamp", __FILE__, __LINE__);
53 if (SQL_NUMROWS($result) > 0) {
54         if (isFormSent()) {
55                 // Make mail editable...
56                 $result = SQL_QUERY_ESC("SELECT subject, text, url FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
57                 array(bigintval(postRequestParameter('id'))), __FILE__, __LINE__);
58                 list($subj, $text, $url) = SQL_FETCHROW($result);
59                 SQL_FREERESULT($result);
60
61                 // Prepare constant for template
62                 $content['id']       = bigintval(postRequestParameter('id'));
63                 $content['url']      = $url;
64                 $content['subject']  = $subj;
65                 $content['text']     = $text;
66
67                 // Load template
68                 loadTemplate('admin_edit_email', false, $content);
69         } elseif (isPostRequestParameterSet('save')) {
70                 // Save changes
71                 SQL_QUERY_ESC("UPDATE
72         `{?_MYSQL_PREFIX?}_pool`
73 SET
74         `subject`='%s',
75         `text`='%s',
76         `url`='%s'
77 WHERE
78         `id`=%s
79 LIMIT 1",
80                         array(
81                                 postRequestParameter('subject'),
82                                 postRequestParameter('text'),
83                                 postRequestParameter('url'),
84                                 bigintval(postRequestParameter('id')),
85                         ), __FILE__, __LINE__);
86
87                 if (SQL_AFFECTEDROWS() == 1) {
88                         $content = getMessage('SETTINGS_SAVED');
89                 } else {
90                         $content = '<span class="admin_failed">{--SETTINGS_NOT_SAVED--}</span>';
91                 }
92
93                 // Display message
94                 loadTemplate('admin_settings_saved', false, $content);
95         } else {
96                 // There are mail orders available
97                 $OUT = ''; $SW = 2;
98                 while ($content = SQL_FETCHARRAY($result)) {
99                         // Prepare data for the row template
100                         $content = array(
101                                 'sw'      => $SW,
102                                 'id'      => $content['id'],
103                                 'subject' => $content['subject'],
104                                 'userid'  => generateUserProfileLink($content['sender']),
105                                 'pay'     => getPaymentTitlePrice($content['payment_id']),
106                                 'cat'     => getCategory($content['cat_id']),
107                         );
108
109                         // Load row template and switch colors
110                         $OUT .= loadTemplate('admin_edit_email_row', true, $content);
111                         $SW = 3 - $SW;
112                 }
113
114                 // Free memory
115                 SQL_FREERESULT($result);
116
117                 // Load email template
118                 loadTemplate('admin_edit_email_select', false, $OUT);
119         }
120 } else {
121         // No mail orders left in pool
122         loadTemplate('admin_settings_saved', false, '<span class="admin_failed">{--ADMIN_NO_MAILS_IN_POOL--}</span>');
123 }
124
125 // [EOF]
126 ?>