Complete rewrite of and , wrapper functions added, see bug #101
[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  *                                                                      *
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 // Set selection data to empty array when it is empty
44 if (!REQUEST_ISSET_POST(('sel'))) REQUEST_SET_POST('sel', array());
45
46 // Check if direct admin account was selected
47 if (REQUEST_ISSET_GET(('admin'))) {
48         // Secure ID number
49         $aid = bigintval(REQUEST_GET('admin'));
50
51         // Set required fields
52         REQUEST_SET_POST('edit', "1");
53         REQUEST_SET_POST(array('sel', $aid), "1");
54 }
55
56 if ((REQUEST_ISSET_POST(('edit'))) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
57         // Edit account(s)
58         ADMINS_EDIT_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
59 } elseif ((REQUEST_ISSET_POST(('change'))) && (sizeof(REQUEST_POST('login')) > 0)) {
60         // Change admin accounts
61         ADMINS_CHANGE_ADMIN_ACCOUNT(REQUEST_POST_ARRAY());
62 } elseif ((REQUEST_ISSET_POST(('del'))) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
63         // Show admin accounts for deletetion
64         ADMINS_DELETE_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
65 } else {
66         if ((REQUEST_ISSET_POST(('remove'))) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
67                 // Remove accounts now
68                 ADMINS_REMOVE_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
69         }
70
71         // List all admin accounts
72         ADMINS_LIST_ADMIN_ACCOUNTS();
73 }
74
75 //
76 ?>