author | ymh <ymh.work@gmail.com> |
Tue, 15 Oct 2019 11:56:20 +0200 | |
changeset 12 | d8a8807227e4 |
parent 9 | 177826044cd9 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Multisite users administration panel. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Multisite |
|
7 |
* @since 3.0.0 |
|
8 |
*/ |
|
9 |
||
10 |
/** Load WordPress Administration Bootstrap */ |
|
11 |
require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
12 |
||
9 | 13 |
if ( ! current_user_can( 'manage_network_users' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
14 |
wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); |
9 | 15 |
} |
0 | 16 |
|
17 |
if ( isset( $_GET['action'] ) ) { |
|
5 | 18 |
/** This action is documented in wp-admin/network/edit.php */ |
19 |
do_action( 'wpmuadminedit' ); |
|
0 | 20 |
|
21 |
switch ( $_GET['action'] ) { |
|
22 |
case 'deleteuser': |
|
9 | 23 |
if ( ! current_user_can( 'manage_network_users' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
24 |
wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); |
9 | 25 |
} |
0 | 26 |
|
27 |
check_admin_referer( 'deleteuser' ); |
|
28 |
||
29 |
$id = intval( $_GET['id'] ); |
|
30 |
if ( $id != '0' && $id != '1' ) { |
|
31 |
$_POST['allusers'] = array( $id ); // confirm_delete_users() can only handle with arrays |
|
9 | 32 |
$title = __( 'Users' ); |
33 |
$parent_file = 'users.php'; |
|
0 | 34 |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
35 |
echo '<div class="wrap">'; |
|
36 |
confirm_delete_users( $_POST['allusers'] ); |
|
37 |
echo '</div>'; |
|
5 | 38 |
require_once( ABSPATH . 'wp-admin/admin-footer.php' ); |
39 |
} else { |
|
0 | 40 |
wp_redirect( network_admin_url( 'users.php' ) ); |
41 |
} |
|
42 |
exit(); |
|
43 |
||
44 |
case 'allusers': |
|
9 | 45 |
if ( ! current_user_can( 'manage_network_users' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); |
9 | 47 |
} |
0 | 48 |
|
9 | 49 |
if ( ( isset( $_POST['action'] ) || isset( $_POST['action2'] ) ) && isset( $_POST['allusers'] ) ) { |
0 | 50 |
check_admin_referer( 'bulk-users-network' ); |
51 |
||
9 | 52 |
$doaction = $_POST['action'] != -1 ? $_POST['action'] : $_POST['action2']; |
0 | 53 |
$userfunction = ''; |
54 |
||
5 | 55 |
foreach ( (array) $_POST['allusers'] as $user_id ) { |
9 | 56 |
if ( ! empty( $user_id ) ) { |
0 | 57 |
switch ( $doaction ) { |
58 |
case 'delete': |
|
9 | 59 |
if ( ! current_user_can( 'delete_users' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
60 |
wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); |
9 | 61 |
} |
62 |
$title = __( 'Users' ); |
|
0 | 63 |
$parent_file = 'users.php'; |
64 |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
|
65 |
echo '<div class="wrap">'; |
|
66 |
confirm_delete_users( $_POST['allusers'] ); |
|
67 |
echo '</div>'; |
|
68 |
require_once( ABSPATH . 'wp-admin/admin-footer.php' ); |
|
69 |
exit(); |
|
70 |
||
71 |
case 'spam': |
|
5 | 72 |
$user = get_userdata( $user_id ); |
9 | 73 |
if ( is_super_admin( $user->ID ) ) { |
0 | 74 |
wp_die( sprintf( __( 'Warning! User cannot be modified. The user %s is a network administrator.' ), esc_html( $user->user_login ) ) ); |
9 | 75 |
} |
0 | 76 |
|
77 |
$userfunction = 'all_spam'; |
|
9 | 78 |
$blogs = get_blogs_of_user( $user_id, true ); |
5 | 79 |
foreach ( (array) $blogs as $details ) { |
9 | 80 |
if ( $details->userblog_id != get_network()->site_id ) { // main blog not a spam ! |
0 | 81 |
update_blog_status( $details->userblog_id, 'spam', '1' ); |
9 | 82 |
} |
0 | 83 |
} |
5 | 84 |
update_user_status( $user_id, 'spam', '1' ); |
9 | 85 |
break; |
0 | 86 |
|
87 |
case 'notspam': |
|
88 |
$userfunction = 'all_notspam'; |
|
9 | 89 |
$blogs = get_blogs_of_user( $user_id, true ); |
90 |
foreach ( (array) $blogs as $details ) { |
|
0 | 91 |
update_blog_status( $details->userblog_id, 'spam', '0' ); |
9 | 92 |
} |
0 | 93 |
|
5 | 94 |
update_user_status( $user_id, 'spam', '0' ); |
9 | 95 |
break; |
0 | 96 |
} |
97 |
} |
|
98 |
} |
|
99 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
if ( ! in_array( $doaction, array( 'delete', 'spam', 'notspam' ), true ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
$sendback = wp_get_referer(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
102 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
$user_ids = (array) $_POST['allusers']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
/** This action is documented in wp-admin/network/site-themes.php */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
$sendback = apply_filters( 'handle_network_bulk_actions-' . get_current_screen()->id, $sendback, $doaction, $user_ids ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
106 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
107 |
wp_safe_redirect( $sendback ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
108 |
exit(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
110 |
|
9 | 111 |
wp_safe_redirect( |
112 |
add_query_arg( |
|
113 |
array( |
|
114 |
'updated' => 'true', |
|
115 |
'action' => $userfunction, |
|
116 |
), |
|
117 |
wp_get_referer() |
|
118 |
) |
|
119 |
); |
|
0 | 120 |
} else { |
121 |
$location = network_admin_url( 'users.php' ); |
|
122 |
||
9 | 123 |
if ( ! empty( $_REQUEST['paged'] ) ) { |
0 | 124 |
$location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location ); |
9 | 125 |
} |
0 | 126 |
wp_redirect( $location ); |
127 |
} |
|
128 |
exit(); |
|
129 |
||
130 |
case 'dodelete': |
|
131 |
check_admin_referer( 'ms-users-delete' ); |
|
9 | 132 |
if ( ! ( current_user_can( 'manage_network_users' ) && current_user_can( 'delete_users' ) ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
133 |
wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); |
9 | 134 |
} |
0 | 135 |
|
136 |
if ( ! empty( $_POST['blog'] ) && is_array( $_POST['blog'] ) ) { |
|
137 |
foreach ( $_POST['blog'] as $id => $users ) { |
|
138 |
foreach ( $users as $blogid => $user_id ) { |
|
9 | 139 |
if ( ! current_user_can( 'delete_user', $id ) ) { |
0 | 140 |
continue; |
9 | 141 |
} |
0 | 142 |
|
9 | 143 |
if ( ! empty( $_POST['delete'] ) && 'reassign' == $_POST['delete'][ $blogid ][ $id ] ) { |
0 | 144 |
remove_user_from_blog( $id, $blogid, $user_id ); |
9 | 145 |
} else { |
0 | 146 |
remove_user_from_blog( $id, $blogid ); |
9 | 147 |
} |
0 | 148 |
} |
149 |
} |
|
150 |
} |
|
151 |
$i = 0; |
|
9 | 152 |
if ( is_array( $_POST['user'] ) && ! empty( $_POST['user'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
153 |
foreach ( $_POST['user'] as $id ) { |
9 | 154 |
if ( ! current_user_can( 'delete_user', $id ) ) { |
0 | 155 |
continue; |
9 | 156 |
} |
0 | 157 |
wpmu_delete_user( $id ); |
158 |
$i++; |
|
159 |
} |
|
9 | 160 |
} |
0 | 161 |
|
9 | 162 |
if ( $i == 1 ) { |
0 | 163 |
$deletefunction = 'delete'; |
9 | 164 |
} else { |
0 | 165 |
$deletefunction = 'all_delete'; |
9 | 166 |
} |
0 | 167 |
|
9 | 168 |
wp_redirect( |
169 |
add_query_arg( |
|
170 |
array( |
|
171 |
'updated' => 'true', |
|
172 |
'action' => $deletefunction, |
|
173 |
), |
|
174 |
network_admin_url( 'users.php' ) |
|
175 |
) |
|
176 |
); |
|
0 | 177 |
exit(); |
178 |
} |
|
179 |
} |
|
180 |
||
9 | 181 |
$wp_list_table = _get_list_table( 'WP_MS_Users_List_Table' ); |
182 |
$pagenum = $wp_list_table->get_pagenum(); |
|
0 | 183 |
$wp_list_table->prepare_items(); |
184 |
$total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); |
|
185 |
||
186 |
if ( $pagenum > $total_pages && $total_pages > 0 ) { |
|
187 |
wp_redirect( add_query_arg( 'paged', $total_pages ) ); |
|
188 |
exit; |
|
189 |
} |
|
9 | 190 |
$title = __( 'Users' ); |
0 | 191 |
$parent_file = 'users.php'; |
192 |
||
5 | 193 |
add_screen_option( 'per_page' ); |
0 | 194 |
|
9 | 195 |
get_current_screen()->add_help_tab( |
196 |
array( |
|
197 |
'id' => 'overview', |
|
198 |
'title' => __( 'Overview' ), |
|
199 |
'content' => |
|
200 |
'<p>' . __( 'This table shows all users across the network and the sites to which they are assigned.' ) . '</p>' . |
|
201 |
'<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>' . |
|
202 |
'<p>' . __( 'You can also go to the user’s profile page by clicking on the individual username.' ) . '</p>' . |
|
203 |
'<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>' . |
|
204 |
'<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>' . |
|
205 |
'<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>', |
|
206 |
) |
|
207 |
); |
|
0 | 208 |
|
209 |
get_current_screen()->set_help_sidebar( |
|
9 | 210 |
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' . |
211 |
'<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Users_Screen">Documentation on Network Users</a>' ) . '</p>' . |
|
212 |
'<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>' |
|
0 | 213 |
); |
214 |
||
9 | 215 |
get_current_screen()->set_screen_reader_content( |
216 |
array( |
|
217 |
'heading_views' => __( 'Filter users list' ), |
|
218 |
'heading_pagination' => __( 'Users list navigation' ), |
|
219 |
'heading_list' => __( 'Users list' ), |
|
220 |
) |
|
221 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
222 |
|
0 | 223 |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
224 |
||
225 |
if ( isset( $_REQUEST['updated'] ) && $_REQUEST['updated'] == 'true' && ! empty( $_REQUEST['action'] ) ) { |
|
226 |
?> |
|
5 | 227 |
<div id="message" class="updated notice is-dismissible"><p> |
0 | 228 |
<?php |
229 |
switch ( $_REQUEST['action'] ) { |
|
230 |
case 'delete': |
|
231 |
_e( 'User deleted.' ); |
|
9 | 232 |
break; |
0 | 233 |
case 'all_spam': |
234 |
_e( 'Users marked as spam.' ); |
|
9 | 235 |
break; |
0 | 236 |
case 'all_notspam': |
237 |
_e( 'Users removed from spam.' ); |
|
9 | 238 |
break; |
0 | 239 |
case 'all_delete': |
240 |
_e( 'Users deleted.' ); |
|
9 | 241 |
break; |
0 | 242 |
case 'add': |
243 |
_e( 'User added.' ); |
|
9 | 244 |
break; |
0 | 245 |
} |
246 |
?> |
|
247 |
</p></div> |
|
248 |
<?php |
|
249 |
} |
|
9 | 250 |
?> |
0 | 251 |
<div class="wrap"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
252 |
<h1 class="wp-heading-inline"><?php esc_html_e( 'Users' ); ?></h1> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
253 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
254 |
<?php |
9 | 255 |
if ( current_user_can( 'create_users' ) ) : |
256 |
?> |
|
257 |
<a href="<?php echo network_admin_url( 'user-new.php' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a> |
|
258 |
<?php |
|
0 | 259 |
endif; |
260 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
261 |
if ( strlen( $usersearch ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
262 |
/* translators: %s: search keywords */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
263 |
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
264 |
} |
0 | 265 |
?> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
266 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
267 |
<hr class="wp-header-end"> |
0 | 268 |
|
269 |
<?php $wp_list_table->views(); ?> |
|
270 |
||
5 | 271 |
<form method="get" class="search-form"> |
0 | 272 |
<?php $wp_list_table->search_box( __( 'Search Users' ), 'all-user' ); ?> |
273 |
</form> |
|
274 |
||
5 | 275 |
<form id="form-user-list" action="users.php?action=allusers" method="post"> |
0 | 276 |
<?php $wp_list_table->display(); ?> |
277 |
</form> |
|
278 |
</div> |
|
279 |
||
280 |
<?php require_once( ABSPATH . 'wp-admin/admin-footer.php' ); ?> |