3f4159727d4e8c36ae765cc537c40ff508b2b7fb
[mailer.git] / inc / modules / admin / what-admins_mails.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/14/2004 *
4  * ===================                          Last change: 10/22/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-admins_mails.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Control which admin shall receive which mail     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Stellen Sie ein, welcher Admin welche Mail erh.  *
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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 if (isPostRequestElementSet('edit')) {
48         // Check if entires are checked
49         if (countPostSelection() > 0) {
50                 // Add option for events
51                 $adminsList = generateOptionList('admins', 'id', 'login', '', 'email');
52                 $SW = 2; $rowNameS = '';
53                 foreach (postRequestElement('sel') as $template => $sel) {
54                         // First of all load data from DB
55                         $result = SQL_QUERY_ESC("SELECT `admin_id`, `id` FROM `{?_MYSQL_PREFIX?}_admins_mails` WHERE `mail_template`='%s' ORDER BY `id` ASC",
56                                 array($template), __FILE__, __LINE__);
57                         $OUT = '';
58                         $adminId2 = '0';
59                         while ($content = SQL_FETCHARRAY($result)) {
60                                 // @TODO Can this be rewritten???
61                                 $OUT .= "<select name=\"admin_id[".$content['id']."]\" size=\"1\" class=\"admin_select\">
62 <option value=\"0\"";
63                                 if ($content['admin_id'] == '0') $OUT .= ' selected="selected"';
64                                 $OUT .=">{--ADMINS_ALL_ADMINS--}</option>\n";
65                                 if (isExtensionActive('events')) {
66                                         $OUT .= "<option value=\"-1\"";
67                                         if ($content['admin_id'] == '-1') $OUT .= ' selected="selected"';
68                                         $OUT .= ">{--ADMINS_TO_USER_EVENTS--}</option>\n";
69                                 }
70                                 $OUT .= generateOptionList('admins', 'id', 'login', $content['admin_id'], 'email');
71                                 $OUT .= "</select>\n<br />\n";
72
73                                 // Transfer ids
74                                 $adminId2 = $content['admin_id'];
75                                 $id2 = $content['id'];
76                         } // END - while
77
78                         // Free memory
79                         SQL_FREERESULT($result);
80
81                         // Prepare content
82                         $content['sw']     = $SW;
83                         $content['admins'] = $adminsList;
84
85                         if ($adminId2 > 0) {
86                                 // Add form for an additional admin
87                                 $OUT .= loadTemplate('admin_admins_mails_edit_form', true, $content);
88                         } // END - if
89
90                         // Save full rendered content
91                         $content['content'] = $OUT;
92
93                         // Start outputing line
94                         $rowNameS .= loadTemplate('admin_admins_mails_edit_row', true, $content);
95                         $SW = 3 - $SW;
96                 }
97
98                 // Edit checked entries
99                 loadTemplate('admin_admins_mails_edit', false, $rowNameS);
100         } else {
101                 // Nothing selected
102                 loadTemplate('admin_settings_saved', false, getMessage('ADMINS_NO_MAIL_CHECKED'));
103         }
104 } else {
105         // Load all assigned mails
106         $result = SQL_QUERY("SELECT
107         m.id, m.admin_id, a.login, m.mail_template
108 FROM
109         `{?_MYSQL_PREFIX?}_admins_mails` AS m
110 LEFT JOIN
111         `{?_MYSQL_PREFIX?}_admins` AS a
112 ON
113         m.admin_id=a.id
114 WHERE
115         (m.admin_id=a.id OR m.admin_id < 1) AND m.mail_template != ''
116 ORDER BY
117         m.admin_id ASC,
118         m.mail_template ASC", __FILE__, __LINE__);
119
120         if (SQL_NUMROWS($result) > 0) {
121                 // Shall I change entries?
122                 if (isPostRequestElementSet('change')) {
123                         // Init SQLs
124                         initSqls();
125
126                         // Ok, update database
127                         foreach (postRequestElement('admin_id') as $id => $content['admin_id']) {
128                                 // Secure ids
129                                 $id  = bigintval($id);
130                                 $content['admin_id'] = bigintval($content['admin_id']);
131
132                                 // Update entry
133                                 addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins_mails` SET admin_id=%s WHERE `id`=%s ORDER BY `id` LIMIT 1",
134                                 array($content['admin_id'], $id), __FILE__, __LINE__, false));
135
136                                 if (($content['admin_id'] < 1) && (isPostRequestElementSet('template', $id))) {
137                                         // Remove any other admin entries
138                                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admins_mails` WHERE mail_template='%s' AND id != '%s'",
139                                         array(postRequestElement('template', $id), $id), __FILE__, __LINE__, false));
140                                 } // END - if
141
142                                 if (postRequestElement('admin_new', postRequestElement('template', $id)) > 0) {
143                                         // Add new admin
144                                         addSql(SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_admins_mails` (admin_id, mail_template) VALUES ('%s','%s')",
145                                         array($content['admin_id'], postRequestElement('template', $id)), __FILE__, __LINE__, false));
146                                 } // END - if
147                         } // END - foreach
148
149                         // Run all queries
150                         runFilterChain('run_sqls');
151
152                         // Query again...
153                         $result = SQL_QUERY("SELECT m.id, m.admin_id, a.login, m.mail_template FROM `{?_MYSQL_PREFIX?}_admins_mails` AS m, `{?_MYSQL_PREFIX?}_admins` AS a WHERE m.admin_id=a.id OR m.admin_id < 1 ORDER BY m.admin_id", __FILE__, __LINE__);
154                 } // END - if
155
156                 // List found entries
157                 $OUT = ''; $SW = 2;
158                 while ($data = SQL_FETCHARRAY($result)) {
159                         // Prepare content
160                         $content = array(
161                                 'sw'   => $SW,
162                                 'id'   => $data['id'],
163                                 'tpl'  => $data['mail_template'],
164                                 'alnk' => generateAdminLink($data['admin_id'])
165                         );
166
167                         // Load row template
168                         $OUT .= loadTemplate('admin_admins_mails_list_row', true, $content);
169                         $SW = 3 - $SW;
170                 } // END - while
171
172                 // Free result
173                 SQL_FREERESULT($result);
174
175                 // Load template
176                 loadTemplate('admin_admins_mails_list', false, $OUT);
177         } else {
178                 // No entries found
179                 loadTemplate('admin_settings_saved', false, getMessage('ADMINS_MAILS_NO_ENTRIES'));
180         }
181 }
182
183 // [EOF]
184 ?>