Users: Introduce `users_have_additional_content` filter to indicate whether the users being deleted have additional content associated with them outside of the `post_author` and `link_owner` relationships.
Props garrett-eclipse, xkon, birgire. Fixes #36860. Built from https://develop.svn.wordpress.org/trunk@44967 git-svn-id: http://core.svn.wordpress.org/trunk@44798 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7d74080b80
commit
1fc763e85e
|
@ -234,12 +234,24 @@ switch ( $wp_list_table->current_action() ) {
|
|||
$userids = array_map( 'intval', (array) $_REQUEST['users'] );
|
||||
}
|
||||
|
||||
$users_have_content = false;
|
||||
/**
|
||||
* Filters whether the users being deleted have additional content
|
||||
* associated with them outside of the `post_author` and `link_owner` relationships.
|
||||
*
|
||||
* @since 5.2.0
|
||||
*
|
||||
* @param boolean $users_have_additional_content Whether the users have additional content. Default false.
|
||||
* @param int[] $userids Array of IDs for users being deleted.
|
||||
*/
|
||||
$users_have_content = (bool) apply_filters( 'users_have_additional_content', false, $userids );
|
||||
|
||||
if ( ! $users_have_content ) {
|
||||
if ( $wpdb->get_var( "SELECT ID FROM {$wpdb->posts} WHERE post_author IN( " . implode( ',', $userids ) . ' ) LIMIT 1' ) ) {
|
||||
$users_have_content = true;
|
||||
} elseif ( $wpdb->get_var( "SELECT link_id FROM {$wpdb->links} WHERE link_owner IN( " . implode( ',', $userids ) . ' ) LIMIT 1' ) ) {
|
||||
$users_have_content = true;
|
||||
}
|
||||
}
|
||||
|
||||
if ( $users_have_content ) {
|
||||
add_action( 'admin_head', 'delete_users_add_js' );
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.2-alpha-44966';
|
||||
$wp_version = '5.2-alpha-44967';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue