A lot texts rewritten and exclamation signs removed
[mailer.git] / inc / modules / admin / what-admins_edit.php
index 2f94ce8edbe4bba3b95028a4823139fc6d113d96..41e9536f346fa4d871cefbabb4900fae3eda8463 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Admin-Account editieren                          *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Set selection data to empty array when it is empty
-if (!REQUEST_ISSET_POST('sel')) REQUEST_SET_POST('sel', array());
+if (!isPostRequestElementSet('sel')) setRequestPostElement('sel', array());
 
 // Check if direct admin account was selected
-if (REQUEST_ISSET_GET('admin')) {
-       // Secure ID number
-       $aid = bigintval(REQUEST_GET('admin'));
+if (isGetRequestElementSet('admin')) {
+       // Secure id number
+       $adminId = bigintval(getRequestElement('admin'));
 
        // Set required fields
-       REQUEST_SET_POST('edit', "1");
-       REQUEST_SET_POST(array('sel', $aid), "1");
-}
+       setRequestPostElement('edit', 1);
+       setRequestPostElement('sel', array($adminId => 1));
+} // END - if
 
-if ((REQUEST_ISSET_POST('edit')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
+if ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) {
        // Edit account(s)
-       ADMINS_EDIT_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
-} elseif ((REQUEST_ISSET_POST(('change'))) && (count(REQUEST_POST('login')) > 0)) {
+       adminsEditAdminAccount(postRequestArray());
+} elseif ((isPostRequestElementSet('change')) && (count(postRequestElement('login')) > 0)) {
        // Change admin accounts
-       ADMINS_CHANGE_ADMIN_ACCOUNT(REQUEST_POST_ARRAY());
-} elseif ((REQUEST_ISSET_POST('del')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
+       adminsChangeAdminAccount(postRequestArray());
+} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) {
        // Show admin accounts for deletetion
-       ADMINS_DELETE_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
+       adminsDeleteAdminAccount(postRequestArray());
 } else {
-       if ((REQUEST_ISSET_POST(('remove'))) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
+       if ((isPostRequestElementSet('remove')) && (countPostSelection() > 0)) {
                // Remove accounts now
-               ADMINS_REMOVE_ADMIN_ACCOUNTS(REQUEST_POST_ARRAY());
-       }
+               adminsRemoveAdminAccount(postRequestArray());
+       } // END - if
 
        // List all admin accounts
-       ADMINS_LIST_ADMIN_ACCOUNTS();
+       adminsListAdminAccounts();
 }
 
-//
+// [EOF]
 ?>