X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/5aa86a9053fb0fa15846bb60aac2fb8fdfff524a..af50974463450c98503e763a7836a50e260461a9:/wp-admin/network/users.php diff --git a/wp-admin/network/users.php b/wp-admin/network/users.php index 25d853d9..86a4d74d 100644 --- a/wp-admin/network/users.php +++ b/wp-admin/network/users.php @@ -8,7 +8,7 @@ */ /** Load WordPress Administration Bootstrap */ -require_once( './admin.php' ); +require_once( dirname( __FILE__ ) . '/admin.php' ); if ( ! is_multisite() ) wp_die( __( 'Multisite support is not enabled.' ) ); @@ -20,40 +20,38 @@ function confirm_delete_users( $users ) { $current_user = wp_get_current_user(); if ( !is_array( $users ) ) return false; - - screen_icon(); ?>

-

+

ID'>$current_user->user_login"; + $admin_out = ''; - foreach ( ( $allusers = (array) $_POST['allusers'] ) as $key => $val ) { - if ( $val != '' && $val != '0' ) { - $delete_user = new WP_User( $val ); + foreach ( ( $allusers = (array) $_POST['allusers'] ) as $user_id ) { + if ( $user_id != '' && $user_id != '0' ) { + $delete_user = get_userdata( $user_id ); if ( ! current_user_can( 'delete_user', $delete_user->ID ) ) wp_die( sprintf( __( 'Warning! User %s cannot be deleted.' ), $delete_user->user_login ) ); if ( in_array( $delete_user->user_login, $site_admins ) ) - wp_die( sprintf( __( 'Warning! User cannot be deleted. The user %s is a network admnistrator.' ), $delete_user->user_login ) ); + wp_die( sprintf( __( 'Warning! User cannot be deleted. The user %s is a network administrator.' ), $delete_user->user_login ) ); - echo "\n"; - $blogs = get_blogs_of_user( $val, true ); + echo "\n"; + $blogs = get_blogs_of_user( $user_id, true ); if ( !empty( $blogs ) ) { ?> -

%s?" ), $delete_user->user_login ); ?>

+

' . $delete_user->user_login . '' ); ?>

$details ) { - $blog_users = get_users( array( 'blog_id' => $details->userblog_id ) ); + $blog_users = get_users( array( 'blog_id' => $details->userblog_id, 'fields' => array( 'ID', 'user_login' ) ) ); if ( is_array( $blog_users ) && !empty( $blog_users ) ) { $user_site = "{$details->blogname}"; - $user_dropdown = ""; $user_list = ''; foreach ( $blog_users as $user ) { if ( ! in_array( $user->ID, $allusers ) ) @@ -67,9 +65,9 @@ function confirm_delete_users( $users ) {
  • +
  • + ' . $user_dropdown; ?>
@@ -87,7 +88,8 @@ function confirm_delete_users( $users ) { } if ( isset( $_GET['action'] ) ) { - do_action( 'wpmuadminedit' , '' ); + /** This action is documented in wp-admin/network/edit.php */ + do_action( 'wpmuadminedit' ); switch ( $_GET['action'] ) { case 'deleteuser': @@ -101,16 +103,15 @@ if ( isset( $_GET['action'] ) ) { $_POST['allusers'] = array( $id ); // confirm_delete_users() can only handle with arrays $title = __( 'Users' ); $parent_file = 'users.php'; - require_once( '../admin-header.php' ); + require_once( ABSPATH . 'wp-admin/admin-header.php' ); echo '
'; confirm_delete_users( $_POST['allusers'] ); echo '
'; - require_once( '../admin-footer.php' ); + require_once( ABSPATH . 'wp-admin/admin-footer.php' ); } else { wp_redirect( network_admin_url( 'users.php' ) ); } exit(); - break; case 'allusers': if ( !current_user_can( 'manage_network_users' ) ) @@ -119,48 +120,45 @@ if ( isset( $_GET['action'] ) ) { if ( ( isset( $_POST['action']) || isset($_POST['action2'] ) ) && isset( $_POST['allusers'] ) ) { check_admin_referer( 'bulk-users-network' ); - if ( $_GET['action'] != -1 || $_POST['action2'] != -1 ) - $doaction = $_POST['action'] != -1 ? $_POST['action'] : $_POST['action2']; - + $doaction = $_POST['action'] != -1 ? $_POST['action'] : $_POST['action2']; $userfunction = ''; - foreach ( (array) $_POST['allusers'] as $key => $val ) { - if ( !empty( $val ) ) { + foreach ( (array) $_POST['allusers'] as $user_id ) { + if ( !empty( $user_id ) ) { switch ( $doaction ) { case 'delete': if ( ! current_user_can( 'delete_users' ) ) wp_die( __( 'You do not have permission to access this page.' ) ); $title = __( 'Users' ); $parent_file = 'users.php'; - require_once( '../admin-header.php' ); + require_once( ABSPATH . 'wp-admin/admin-header.php' ); echo '
'; confirm_delete_users( $_POST['allusers'] ); echo '
'; - require_once( '../admin-footer.php' ); - exit(); - break; + require_once( ABSPATH . 'wp-admin/admin-footer.php' ); + exit(); case 'spam': - $user = new WP_User( $val ); - if ( in_array( $user->user_login, get_super_admins() ) ) + $user = get_userdata( $user_id ); + if ( is_super_admin( $user->ID ) ) wp_die( sprintf( __( 'Warning! User cannot be modified. The user %s is a network administrator.' ), esc_html( $user->user_login ) ) ); $userfunction = 'all_spam'; - $blogs = get_blogs_of_user( $val, true ); - foreach ( (array) $blogs as $key => $details ) { + $blogs = get_blogs_of_user( $user_id, true ); + foreach ( (array) $blogs as $details ) { if ( $details->userblog_id != $current_site->blog_id ) // main blog not a spam ! update_blog_status( $details->userblog_id, 'spam', '1' ); } - update_user_status( $val, 'spam', '1' ); + update_user_status( $user_id, 'spam', '1' ); break; case 'notspam': $userfunction = 'all_notspam'; - $blogs = get_blogs_of_user( $val, true ); - foreach ( (array) $blogs as $key => $details ) + $blogs = get_blogs_of_user( $user_id, true ); + foreach ( (array) $blogs as $details ) update_blog_status( $details->userblog_id, 'spam', '0' ); - update_user_status( $val, 'spam', '0' ); + update_user_status( $user_id, 'spam', '0' ); break; } } @@ -175,7 +173,6 @@ if ( isset( $_GET['action'] ) ) { wp_redirect( $location ); } exit(); - break; case 'dodelete': check_admin_referer( 'ms-users-delete' ); @@ -211,7 +208,6 @@ if ( isset( $_GET['action'] ) ) { wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => $deletefunction ), network_admin_url( 'users.php' ) ) ); exit(); - break; } } @@ -234,7 +230,7 @@ get_current_screen()->add_help_tab( array( 'title' => __('Overview'), 'content' => '

' . __('This table shows all users across the network and the sites to which they are assigned.') . '

' . - '

' . __('Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to his or her Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.') . '

' . + '

' . __('Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.') . '

' . '

' . __('You can also go to the user’s profile page by clicking on the individual username.') . '

' . '

' . __('You can sort the table by clicking on any of the bold headings and switch between list and excerpt views by using the icons in the upper right.') . '

' . '

' . __('The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.') . '

' . @@ -244,10 +240,10 @@ get_current_screen()->add_help_tab( array( get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Network Users') . '

' . - '

' . __('Support Forums') . '

' + '

' . __('Support Forums') . '

' ); -require_once( '../admin-header.php' ); +require_once( ABSPATH . 'wp-admin/admin-header.php' ); if ( isset( $_REQUEST['updated'] ) && $_REQUEST['updated'] == 'true' && ! empty( $_REQUEST['action'] ) ) { ?> @@ -276,7 +272,6 @@ if ( isset( $_REQUEST['updated'] ) && $_REQUEST['updated'] == 'true' && ! empty( } ?>
-

views(); ?>
- search_box( __( 'Search Users' ), 'user' ); ?> + search_box( __( 'Search Users' ), 'all-user' ); ?>
-
+ display(); ?>

- +