2 /************************************************************************
3 * MXChange v0.2.1 Start: 04/18/2004 *
4 * ================ Last change: 04/18/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-admins_edit.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Edit admin accounts *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Admin-Account editieren *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
41 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
48 // Set selection data to empty array when it is empty
49 if (!REQUEST_ISSET_POST('sel')) REQUEST_SET_POST('sel', array());
51 // Check if direct admin account was selected
52 if (REQUEST_ISSET_GET('admin')) {
54 $aid = bigintval(REQUEST_GET('admin'));
56 // Set required fields
57 REQUEST_SET_POST('edit', "1");
58 REQUEST_SET_POST(array('sel', $aid), "1");
61 if ((REQUEST_ISSET_POST('edit')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
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());
71 if ((REQUEST_ISSET_POST('remove')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
72 // Remove accounts now
73 ADMINS_REMOVE_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
76 // List all admin accounts
77 ADMINS_LIST_ADMIN_ACCOUNTS();