More fixes from bugtracker issues, thanks to profi-concept
[mailer.git] / inc / modules / admin / what-edit_emails.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 if ((isset($_POST['ok'])) && (empty($_POST['id']))) {
44         unset($_POST['ok']);
45 }
46
47 $result = SQL_QUERY("SELECT id, sender, subject, payment_id, cat_id FROM "._MYSQL_PREFIX."_pool ORDER BY timestamp", __FILE__, __LINE__);
48 if (SQL_NUMROWS($result) > 0) {
49         if (isset($_POST['ok'])) {
50                 // Make mail editable...
51                 $result = SQL_QUERY_ESC("SELECT subject, text, url FROM "._MYSQL_PREFIX."_pool WHERE id=%s LIMIT 1",
52                  array(bigintval($_POST['id'])), __FILE__, __LINE__);
53                 list($subj, $text, $url) = SQL_FETCHROW($result);
54                 SQL_FREERESULT($result);
55                 define('__ID_VALUE'  , $_POST['id']);
56                 define('__URL_VALUE' , $url);
57                 define('__SUBJ_VALUE', $subj);
58                 define('__TEXT_VALUE', $text);
59
60                 // Load template
61                 LOAD_TEMPLATE("admin_edit_email");
62         } elseif (!empty($_POST['save'])) {
63                 // Save changes
64                 SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET
65 subject='%s',
66 text='%s',
67 url='%s'
68 WHERE id=%s LIMIT 1",
69  array(
70         $_POST['subj'],
71         $_POST['text'],
72         $_POST['url'],
73         bigintval($_POST['id']),
74 ), __FILE__, __LINE__);
75
76                 if (SQL_AFFECTEDROWS() == 1) {
77                         $content = SETTINGS_SAVED;
78                 } else {
79                         $content = "<SPAN class=\"admin_failed\">".SETTINGS_NOT_SAVED."</SPAN>";
80                 }
81
82                 // Display message
83                 LOAD_TEMPLATE("admin_settings_saved", false, $content);
84         } else {
85                 // There are mail orders available
86                 $SW = 2; $OUT = "";
87                 while (list($id, $sender, $subj, $pay, $cat) = SQL_FETCHROW($result)) {
88                         // Prepare data for the row template
89                         $content = array(
90                                 'sw'   => $SW,
91                                 'id'   => $id,
92                                 'subj' => $subj,
93                                 'uid'  => ADMIN_USER_PROFILE_LINK($sender),
94                                 'pay'  => GET_PAYMENT($pay),
95                                 'cat'  => GET_CATEGORY($cat),
96                         );
97
98                         // Load row template and switch colors
99                         $OUT .= LOAD_TEMPLATE("admin_edit_email_row", true, $content);
100                         $SW = 3 - $SW;
101                 }
102
103                 // Free memory
104                 SQL_FREERESULT($result);
105                 define('__EMAIL_SELECT_ROWS', $OUT);
106
107                 // Load email template
108                 LOAD_TEMPLATE("admin_edit_email_select");
109         }
110 } else {
111         // No mail orders left in pool
112         OUTPUT_HTML("<SPAN class=\"admin_failed\">".ADMIN_NO_MAILS_IN_POOL."</SPAN>");
113 }
114
115 //
116 ?>