A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / modules / admin / what-admins_edit.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/18/2004 *
4  * ================                             Last change: 04/18/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-admins_edit.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Edit admin accounts                              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Admin-Account editieren                          *
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 - 2008 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')) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47
48 // Set selection data to empty array when it is empty
49 if (!REQUEST_ISSET_POST('sel')) REQUEST_SET_POST('sel', array());
50
51 // Check if direct admin account was selected
52 if (REQUEST_ISSET_GET('admin')) {
53         // Secure ID number
54         $aid = bigintval(REQUEST_GET('admin'));
55
56         // Set required fields
57         REQUEST_SET_POST('edit', "1");
58         REQUEST_SET_POST(array('sel', $aid), "1");
59 }
60
61 if ((REQUEST_ISSET_POST('edit')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
62         // Edit account(s)
63         ADMINS_EDIT_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
64 } elseif ((REQUEST_ISSET_POST('change')) && (count(REQUEST_POST('login')) > 0)) {
65         // Change admin accounts
66         ADMINS_CHANGE_ADMIN_ACCOUNT(REQUEST_POST_ARRAY());
67 } elseif ((REQUEST_ISSET_POST('del')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
68         // Show admin accounts for deletetion
69         ADMINS_DELETE_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
70 } else {
71         if ((REQUEST_ISSET_POST('remove')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
72                 // Remove accounts now
73                 ADMINS_REMOVE_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
74         }
75
76         // List all admin accounts
77         ADMINS_LIST_ADMIN_ACCOUNTS();
78 }
79
80 //
81 ?>