Renamed all SQL-related functions to camel-case notation
[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 - 2013 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('edit')) && (isPostRequestElementSet('id')) && (isGetRequestElementSet('type')) && (postRequestElement('type') == 'normal')) {
52         // Get data
53         $content = getPoolDataFromId(postRequestElement('id'));
54
55         // Load template
56         loadTemplate('admin_edit_email', FALSE, $content);
57 } elseif ((isPostRequestElementSet('id')) && (isGetRequestElementSet('type')) && (postRequestElement('type') == 'bonus')) {
58                 // Make also this email editable
59                 $result = sqlQueryEscaped('SELECT
60         `id`,
61         `subject`,
62         `text`,
63         `url`
64 FROM
65         `{?_MYSQL_PREFIX?}_bonus`
66 WHERE
67         `id`=%s
68 LIMIT 1',
69                 array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
70
71         // Fetch row
72         $content = sqlFetchArray($result);
73
74         // Free result
75         sqlFreeResult($result);
76
77         // Load template
78         loadTemplate('admin_edit_bonus_email', FALSE, $content);
79 } elseif (isFormSent('do_edit')) {
80         // Save changes
81         if ((isPostRequestElementSet('id')) && (isGetRequestElementSet('type')) && (postRequestElement('type') == 'normal')) {
82                 // Update pool
83                 $isUpdated = updatePoolDataById(postRequestElement('id'), NULL, array('subject' => postRequestElement('subject'), 'text' => postRequestElement('text'), 'url' => postRequestElemenet('url')));
84                 if ($isUpdated === TRUE) {
85                         $content = '{--ADMIN_EMAIL_CHANGES_SAVED--}';
86                 } else {
87                         $content = '<span class="bad">{--ADMIN_EMAIL_CHANGES_NOT_SAVED--}</span>';
88                 }
89         } elseif ((isPostRequestElementSet('id')) && (isGetRequestElementSet('type')) && (postRequestElement('type') == 'bonus')) {
90                 // Update pool
91                 sqlQueryEscaped("UPDATE
92         `{?_MYSQL_PREFIX?}_bonus`
93 SET
94         `subject`='%s',
95         `text`='%s',
96         `url`='%s'
97 WHERE
98         `id`=%s
99 LIMIT 1",
100                         array(
101                                 postRequestElement('subject'),
102                                 postRequestElement('text'),
103                                 postRequestElement('url'),
104                                 bigintval(postRequestElement('id')),
105                         ), __FILE__, __LINE__);
106
107                 if (!ifSqlHasZeroAffectedRows()) {
108                         $content = '{--ADMIN_EMAIL_CHANGES_SAVED--}';
109                 } else {
110                         $content = '<span class="bad">{--ADMIN_EMAIL_CHANGES_NOT_SAVED--}</span>';
111                 }
112         } else {
113                 // No valid action
114                 $content = '<span class="bad">{--ADMIN_EDIT_EMAIL_FAILED--}</span>';
115         }
116
117         // Display message
118         displayMessage($content);
119 } else {
120         // Query the pool
121         $result = sqlQuery('SELECT
122         `id`,
123         `sender`,
124         `subject`,
125         `payment_id`,
126         `cat_id`
127 FROM
128         `{?_MYSQL_PREFIX?}_pool`
129 ORDER BY
130         `sender` ASC,
131         `timestamp` ASC', __FILE__, __LINE__);
132
133         // Entries found?
134         if (!ifSqlHasZeroNums($result)) {
135                 // There are mail orders available
136                 $OUT = '';
137                 while ($content = sqlFetchArray($result)) {
138                         // Load row template and switch colors
139                         $OUT .= loadTemplate('admin_edit_email_row', TRUE, $content);
140                 } // END - while
141
142                 // Free memory
143                 sqlFreeResult($result);
144
145                 // Load email template
146                 loadTemplate('admin_edit_email_select', FALSE, $OUT);
147         } else {
148                 // No mail orders left in pool
149                 displayMessage('{--ADMIN_NO_MAILS_IN_POOL--}');
150         }
151 }
152
153 // [EOF]
154 ?>