Changeset 42343 for trunk/src/wp-admin/network/users.php
- Timestamp:
- 11/30/2017 11:09:33 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/users.php
r39551 r42343 11 11 require_once( dirname( __FILE__ ) . '/admin.php' ); 12 12 13 if ( ! current_user_can( 'manage_network_users' ) ) 13 if ( ! current_user_can( 'manage_network_users' ) ) { 14 14 wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); 15 } 15 16 16 17 if ( isset( $_GET['action'] ) ) { … … 20 21 switch ( $_GET['action'] ) { 21 22 case 'deleteuser': 22 if ( ! current_user_can( 'manage_network_users' ) ) 23 if ( ! current_user_can( 'manage_network_users' ) ) { 23 24 wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); 25 } 24 26 25 27 check_admin_referer( 'deleteuser' ); … … 28 30 if ( $id != '0' && $id != '1' ) { 29 31 $_POST['allusers'] = array( $id ); // confirm_delete_users() can only handle with arrays 30 $title = __( 'Users' );31 $parent_file = 'users.php';32 $title = __( 'Users' ); 33 $parent_file = 'users.php'; 32 34 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 33 35 echo '<div class="wrap">'; … … 41 43 42 44 case 'allusers': 43 if ( ! current_user_can( 'manage_network_users' ) )45 if ( ! current_user_can( 'manage_network_users' ) ) { 44 46 wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); 45 46 if ( ( isset( $_POST['action']) || isset($_POST['action2'] ) ) && isset( $_POST['allusers'] ) ) { 47 } 48 49 if ( ( isset( $_POST['action'] ) || isset( $_POST['action2'] ) ) && isset( $_POST['allusers'] ) ) { 47 50 check_admin_referer( 'bulk-users-network' ); 48 51 49 $doaction = $_POST['action'] != -1 ? $_POST['action'] : $_POST['action2'];52 $doaction = $_POST['action'] != -1 ? $_POST['action'] : $_POST['action2']; 50 53 $userfunction = ''; 51 54 52 55 foreach ( (array) $_POST['allusers'] as $user_id ) { 53 if ( ! empty( $user_id ) ) {56 if ( ! empty( $user_id ) ) { 54 57 switch ( $doaction ) { 55 58 case 'delete': 56 if ( ! current_user_can( 'delete_users' ) ) 59 if ( ! current_user_can( 'delete_users' ) ) { 57 60 wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); 58 $title = __( 'Users' ); 61 } 62 $title = __( 'Users' ); 59 63 $parent_file = 'users.php'; 60 64 require_once( ABSPATH . 'wp-admin/admin-header.php' ); … … 67 71 case 'spam': 68 72 $user = get_userdata( $user_id ); 69 if ( is_super_admin( $user->ID ) ) 73 if ( is_super_admin( $user->ID ) ) { 70 74 wp_die( sprintf( __( 'Warning! User cannot be modified. The user %s is a network administrator.' ), esc_html( $user->user_login ) ) ); 75 } 71 76 72 77 $userfunction = 'all_spam'; 73 $blogs = get_blogs_of_user( $user_id, true );78 $blogs = get_blogs_of_user( $user_id, true ); 74 79 foreach ( (array) $blogs as $details ) { 75 if ( $details->userblog_id != get_network()->site_id ) // main blog not a spam !80 if ( $details->userblog_id != get_network()->site_id ) { // main blog not a spam ! 76 81 update_blog_status( $details->userblog_id, 'spam', '1' ); 82 } 77 83 } 78 84 update_user_status( $user_id, 'spam', '1' ); 79 break;85 break; 80 86 81 87 case 'notspam': 82 88 $userfunction = 'all_notspam'; 83 $blogs = get_blogs_of_user( $user_id, true );84 foreach ( (array) $blogs as $details ) 89 $blogs = get_blogs_of_user( $user_id, true ); 90 foreach ( (array) $blogs as $details ) { 85 91 update_blog_status( $details->userblog_id, 'spam', '0' ); 92 } 86 93 87 94 update_user_status( $user_id, 'spam', '0' ); 88 break;95 break; 89 96 } 90 97 } … … 102 109 } 103 110 104 wp_safe_redirect( add_query_arg( array( 'updated' => 'true', 'action' => $userfunction ), wp_get_referer() ) ); 111 wp_safe_redirect( 112 add_query_arg( 113 array( 114 'updated' => 'true', 115 'action' => $userfunction, 116 ), wp_get_referer() 117 ) 118 ); 105 119 } else { 106 120 $location = network_admin_url( 'users.php' ); 107 121 108 if ( ! empty( $_REQUEST['paged'] ) ) 122 if ( ! empty( $_REQUEST['paged'] ) ) { 109 123 $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location ); 124 } 110 125 wp_redirect( $location ); 111 126 } … … 114 129 case 'dodelete': 115 130 check_admin_referer( 'ms-users-delete' ); 116 if ( ! ( current_user_can( 'manage_network_users' ) && current_user_can( 'delete_users' ) ) ) 131 if ( ! ( current_user_can( 'manage_network_users' ) && current_user_can( 'delete_users' ) ) ) { 117 132 wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); 133 } 118 134 119 135 if ( ! empty( $_POST['blog'] ) && is_array( $_POST['blog'] ) ) { 120 136 foreach ( $_POST['blog'] as $id => $users ) { 121 137 foreach ( $users as $blogid => $user_id ) { 122 if ( ! current_user_can( 'delete_user', $id ) ) 138 if ( ! current_user_can( 'delete_user', $id ) ) { 123 139 continue; 124 125 if ( ! empty( $_POST['delete'] ) && 'reassign' == $_POST['delete'][$blogid][$id] ) 140 } 141 142 if ( ! empty( $_POST['delete'] ) && 'reassign' == $_POST['delete'][ $blogid ][ $id ] ) { 126 143 remove_user_from_blog( $id, $blogid, $user_id ); 127 else144 } else { 128 145 remove_user_from_blog( $id, $blogid ); 146 } 129 147 } 130 148 } 131 149 } 132 150 $i = 0; 133 if ( is_array( $_POST['user'] ) && ! empty( $_POST['user'] ) ) 151 if ( is_array( $_POST['user'] ) && ! empty( $_POST['user'] ) ) { 134 152 foreach ( $_POST['user'] as $id ) { 135 if ( ! current_user_can( 'delete_user', $id ) ) 153 if ( ! current_user_can( 'delete_user', $id ) ) { 136 154 continue; 155 } 137 156 wpmu_delete_user( $id ); 138 157 $i++; 139 158 } 140 141 if ( $i == 1 ) 159 } 160 161 if ( $i == 1 ) { 142 162 $deletefunction = 'delete'; 143 else163 } else { 144 164 $deletefunction = 'all_delete'; 145 146 wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => $deletefunction ), network_admin_url( 'users.php' ) ) ); 165 } 166 167 wp_redirect( 168 add_query_arg( 169 array( 170 'updated' => 'true', 171 'action' => $deletefunction, 172 ), network_admin_url( 'users.php' ) 173 ) 174 ); 147 175 exit(); 148 176 } 149 177 } 150 178 151 $wp_list_table = _get_list_table( 'WP_MS_Users_List_Table');152 $pagenum = $wp_list_table->get_pagenum();179 $wp_list_table = _get_list_table( 'WP_MS_Users_List_Table' ); 180 $pagenum = $wp_list_table->get_pagenum(); 153 181 $wp_list_table->prepare_items(); 154 182 $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); … … 158 186 exit; 159 187 } 160 $title = __( 'Users' );188 $title = __( 'Users' ); 161 189 $parent_file = 'users.php'; 162 190 163 191 add_screen_option( 'per_page' ); 164 192 165 get_current_screen()->add_help_tab( array( 166 'id' => 'overview', 167 'title' => __('Overview'), 168 'content' => 169 '<p>' . __('This table shows all users across the network and the sites to which they are assigned.') . '</p>' . 170 '<p>' . __('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.') . '</p>' . 171 '<p>' . __('You can also go to the user’s profile page by clicking on the individual username.') . '</p>' . 172 '<p>' . __( '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.' ) . '</p>' . 173 '<p>' . __('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.') . '</p>' . 174 '<p>' . __('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.') . '</p>' 175 ) ); 193 get_current_screen()->add_help_tab( 194 array( 195 'id' => 'overview', 196 'title' => __( 'Overview' ), 197 'content' => 198 '<p>' . __( 'This table shows all users across the network and the sites to which they are assigned.' ) . '</p>' . 199 '<p>' . __( '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.' ) . '</p>' . 200 '<p>' . __( 'You can also go to the user’s profile page by clicking on the individual username.' ) . '</p>' . 201 '<p>' . __( '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.' ) . '</p>' . 202 '<p>' . __( '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.' ) . '</p>' . 203 '<p>' . __( '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.' ) . '</p>', 204 ) 205 ); 176 206 177 207 get_current_screen()->set_help_sidebar( 178 '<p><strong>' . __( 'For more information:') . '</strong></p>' .179 '<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Users_Screen">Documentation on Network Users</a>') . '</p>' .180 '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>') . '</p>'208 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 209 '<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Users_Screen">Documentation on Network Users</a>' ) . '</p>' . 210 '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>' 181 211 ); 182 212 183 get_current_screen()->set_screen_reader_content( array( 184 'heading_views' => __( 'Filter users list' ), 185 'heading_pagination' => __( 'Users list navigation' ), 186 'heading_list' => __( 'Users list' ), 187 ) ); 213 get_current_screen()->set_screen_reader_content( 214 array( 215 'heading_views' => __( 'Filter users list' ), 216 'heading_pagination' => __( 'Users list navigation' ), 217 'heading_list' => __( 'Users list' ), 218 ) 219 ); 188 220 189 221 require_once( ABSPATH . 'wp-admin/admin-header.php' ); … … 196 228 case 'delete': 197 229 _e( 'User deleted.' ); 198 break;230 break; 199 231 case 'all_spam': 200 232 _e( 'Users marked as spam.' ); 201 break;233 break; 202 234 case 'all_notspam': 203 235 _e( 'Users removed from spam.' ); 204 break;236 break; 205 237 case 'all_delete': 206 238 _e( 'Users deleted.' ); 207 break;239 break; 208 240 case 'add': 209 241 _e( 'User added.' ); 210 break;242 break; 211 243 } 212 244 ?> … … 219 251 220 252 <?php 221 if ( current_user_can( 'create_users') ) : ?> 222 <a href="<?php echo network_admin_url('user-new.php'); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a><?php 253 if ( current_user_can( 'create_users' ) ) : 254 ?> 255 <a href="<?php echo network_admin_url( 'user-new.php' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a> 256 <?php 223 257 endif; 224 258
Note: See TracChangeset
for help on using the changeset viewer.