diff -r c7c34916027a -r 177826044cd9 wp/wp-admin/network/users.php --- a/wp/wp-admin/network/users.php Mon Oct 14 18:06:33 2019 +0200 +++ b/wp/wp-admin/network/users.php Mon Oct 14 18:28:13 2019 +0200 @@ -10,8 +10,9 @@ /** Load WordPress Administration Bootstrap */ require_once( dirname( __FILE__ ) . '/admin.php' ); -if ( ! current_user_can( 'manage_network_users' ) ) +if ( ! current_user_can( 'manage_network_users' ) ) { wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); +} if ( isset( $_GET['action'] ) ) { /** This action is documented in wp-admin/network/edit.php */ @@ -19,16 +20,17 @@ switch ( $_GET['action'] ) { case 'deleteuser': - if ( ! current_user_can( 'manage_network_users' ) ) + if ( ! current_user_can( 'manage_network_users' ) ) { wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); + } check_admin_referer( 'deleteuser' ); $id = intval( $_GET['id'] ); if ( $id != '0' && $id != '1' ) { $_POST['allusers'] = array( $id ); // confirm_delete_users() can only handle with arrays - $title = __( 'Users' ); - $parent_file = 'users.php'; + $title = __( 'Users' ); + $parent_file = 'users.php'; require_once( ABSPATH . 'wp-admin/admin-header.php' ); echo '
' . __('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 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 table headings and switch between list and excerpt views by using the icons above the users list.' ) . '
' . - '' . __('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.') . '
' . - '' . __('You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.') . '
' -) ); +get_current_screen()->add_help_tab( + array( + 'id' => 'overview', + '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 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 table headings and switch between list and excerpt views by using the icons above the users list.' ) . '
' . + '' . __( '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.' ) . '
' . + '' . __( 'You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.' ) . '
', + ) +); get_current_screen()->set_help_sidebar( - '' . __('For more information:') . '
' . - '' . __('Documentation on Network Users') . '
' . - '' . __('Support Forums') . '
' + '' . __( 'For more information:' ) . '
' . + '' . __( 'Documentation on Network Users' ) . '
' . + '' . __( 'Support Forums' ) . '
' ); -get_current_screen()->set_screen_reader_content( array( - 'heading_views' => __( 'Filter users list' ), - 'heading_pagination' => __( 'Users list navigation' ), - 'heading_list' => __( 'Users list' ), -) ); +get_current_screen()->set_screen_reader_content( + array( + 'heading_views' => __( 'Filter users list' ), + 'heading_pagination' => __( 'Users list navigation' ), + 'heading_list' => __( 'Users list' ), + ) +); require_once( ABSPATH . 'wp-admin/admin-header.php' ); @@ -195,31 +229,33 @@ switch ( $_REQUEST['action'] ) { case 'delete': _e( 'User deleted.' ); - break; + break; case 'all_spam': _e( 'Users marked as spam.' ); - break; + break; case 'all_notspam': _e( 'Users removed from spam.' ); - break; + break; case 'all_delete': _e( 'Users deleted.' ); - break; + break; case 'add': _e( 'User added.' ); - break; + break; } ?>