mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 12:50:28 +00:00
Administration: Switch to handle_network_bulk_actions-{$screen} for the bulk listing screen actions in the network admin area.
Props ericlewis, Veraxus See #16031 git-svn-id: https://develop.svn.wordpress.org/trunk@38957 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -170,20 +170,8 @@ if ( $action ) {
|
||||
}
|
||||
check_admin_referer( 'bulk-users' );
|
||||
$userids = $_REQUEST['users'];
|
||||
/**
|
||||
* Fires when a custom bulk action should be handled.
|
||||
*
|
||||
* The redirect link should be modified with success or failure feedback
|
||||
* from the action to be used to display feedback to the user.
|
||||
*
|
||||
* @since 4.7.0
|
||||
*
|
||||
* @param string $referer The redirect URL.
|
||||
* @param string $action The action being taken.
|
||||
* @param array $userids The users to take the action on.
|
||||
* @param int $id The id of the current site
|
||||
*/
|
||||
$referer = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $referer, $action, $userids, $id );
|
||||
/** This action is documented in wp-admin/network/site-themes.php */
|
||||
$referer = apply_filters( 'handle_network_bulk_actions-' . get_current_screen()->id, $referer, $action, $userids, $id );
|
||||
$update = $action;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user