Previous fix fixed, a lot constants rewritten (unfinished)
[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 // Instance for the cache extension
44 global $cacheInstance;
45
46 // Set selection data to empty array when it is empty
47 if (empty($_POST['sel'])) $_POST['sel'] = array();
48
49 // Check if direct admin account was selected
50 if (!empty($_GET['admin'])) {
51         // Secure ID number
52         $aid = bigintval($_GET['admin']);
53         $_POST['edit'] = "1";
54         $_POST['sel'][$aid] = "1";
55 }
56
57 if ((isset($_POST['edit'])) && (SELECTION_COUNT($_POST['sel']) > 0)) {
58         // Edit account(s)
59         ADMINS_EDIT_ADMIN_ACCOUNTS($_POST);
60 } elseif ((isset($_POST['change'])) && (sizeof($_POST['login']) > 0)) {
61         // Change admin accounts
62         ADMINS_CHANGE_ADMIN_ACCOUNT($_POST);
63 } elseif ((isset($_POST['del'])) && (SELECTION_COUNT($_POST['sel']) > 0)) {
64         // Show admin accounts for deletetion
65         ADMINS_DELETE_ADMIN_ACCOUNTS($_POST);
66 } else {
67         if ((isset($_POST['remove'])) && (SELECTION_COUNT($_POST['sel']) > 0)) {
68                 // Remove accounts now
69                 ADMINS_REMOVE_ADMIN_ACCOUNTS($_POST);
70         }
71
72         // List all admin accounts
73         ADMINS_LIST_ADMIN_ACCOUNTS();
74 }
75
76 //
77 ?>