2003-12-08 02:28:41 +01:00
< ? php
2008-08-16 09:27:34 +02:00
/**
2015-09-22 14:31:26 +02:00
* User administration panel
2008-08-16 09:27:34 +02:00
*
* @ package WordPress
* @ subpackage Administration
2015-11-06 22:54:33 +01:00
* @ since 1.0 . 0
2008-08-16 09:27:34 +02:00
*/
/** WordPress Administration Bootstrap */
2020-02-06 07:33:11 +01:00
require_once __DIR__ . '/admin.php' ;
2008-08-16 09:27:34 +02:00
2015-09-03 10:54:24 +02:00
if ( ! current_user_can ( 'list_users' ) ) {
wp_die (
2018-02-19 03:13:32 +01:00
'<h1>' . __ ( 'You need a higher level of permission.' ) . '</h1>' .
2016-11-19 03:16:30 +01:00
'<p>' . __ ( 'Sorry, you are not allowed to list users.' ) . '</p>' ,
2015-09-03 10:54:24 +02:00
403
);
}
2010-12-16 09:43:22 +01:00
2017-12-01 00:11:00 +01:00
$wp_list_table = _get_list_table ( 'WP_Users_List_Table' );
$pagenum = $wp_list_table -> get_pagenum ();
2021-07-22 15:53:00 +02:00
// Used in the HTML title tag.
$title = __ ( 'Users' );
$parent_file = 'users.php' ;
2006-11-18 08:31:29 +01:00
2015-03-10 16:32:27 +01:00
add_screen_option ( 'per_page' );
2011-10-07 06:57:12 +02:00
2020-01-29 01:45:18 +01:00
// Contextual help - choose Help on the top right of admin panel to preview this.
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'overview' ,
'title' => __ ( 'Overview' ),
'content' => '<p>' . __ ( 'This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.' ) . '</p>' .
'<p>' . __ ( 'To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section.' ) . '</p>' ,
)
);
get_current_screen () -> add_help_tab (
array (
'id' => 'screen-content' ,
'title' => __ ( 'Screen Content' ),
'content' => '<p>' . __ ( 'You can customize the display of this screen in a number of ways:' ) . '</p>' .
'<ul>' .
'<li>' . __ ( 'You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.' ) . '</li>' .
'<li>' . __ ( 'You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.' ) . '</li>' .
'<li>' . __ ( 'You can view all posts made by a user by clicking on the number under the Posts column.' ) . '</li>' .
'</ul>' ,
)
);
$help = '<p>' . __ ( 'Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:' ) . '</p>' .
2011-12-01 02:17:14 +01:00
'<ul>' .
2017-12-01 00:11:00 +01:00
'<li>' . __ ( '<strong>Edit</strong> takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.' ) . '</li>' ;
2011-12-01 02:17:14 +01:00
2017-12-01 00:11:00 +01:00
if ( is_multisite () ) {
2020-07-06 23:52:21 +02:00
$help .= '<li>' . __ ( '<strong>Remove</strong> allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.' ) . '</li>' ;
2017-12-01 00:11:00 +01:00
} else {
2020-07-06 23:52:21 +02:00
$help .= '<li>' . __ ( '<strong>Delete</strong> brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.' ) . '</li>' ;
2017-12-01 00:11:00 +01:00
}
2011-12-01 02:17:14 +01:00
2023-02-08 17:14:18 +01:00
$help .= '<li>' . __ ( '<strong>View</strong> takes you to a public author archive which lists all the posts published by the user.' ) . '</li>' ;
2022-07-05 02:25:13 +02:00
if ( current_user_can ( 'edit_users' ) ) {
$help .= '<li>' . __ ( '<strong>Send password reset</strong> sends the user an email with a link to set a new password.' ) . '</li>' ;
}
2011-12-01 02:17:14 +01:00
$help .= '</ul>' ;
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'action-links' ,
'title' => __ ( 'Available Actions' ),
'content' => $help ,
)
);
2011-12-01 02:17:14 +01:00
unset ( $help );
2011-11-02 21:14:10 +01:00
get_current_screen () -> set_help_sidebar (
2017-12-01 00:11:00 +01:00
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
2023-02-23 11:38:21 +01:00
'<p>' . __ ( '<a href="https://wordpress.org/documentation/article/users-screen/">Documentation on Managing Users</a>' ) . '</p>' .
'<p>' . __ ( '<a href="https://wordpress.org/documentation/article/roles-and-capabilities/">Descriptions of Roles and Capabilities</a>' ) . '</p>' .
'<p>' . __ ( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
2017-12-01 00:11:00 +01:00
);
get_current_screen () -> set_screen_reader_content (
array (
'heading_views' => __ ( 'Filter users list' ),
'heading_pagination' => __ ( 'Users list navigation' ),
'heading_list' => __ ( 'Users list' ),
)
2010-05-28 01:10:26 +02:00
);
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST ) ) {
$referer = '<input type="hidden" name="wp_http_referer" value="' . esc_attr ( wp_unslash ( $_SERVER [ 'REQUEST_URI' ] ) ) . '" />' ;
} elseif ( isset ( $_REQUEST [ 'wp_http_referer' ] ) ) {
$redirect = remove_query_arg ( array ( 'wp_http_referer' , 'updated' , 'delete_count' ), wp_unslash ( $_REQUEST [ 'wp_http_referer' ] ) );
$referer = '<input type="hidden" name="wp_http_referer" value="' . esc_attr ( $redirect ) . '" />' ;
2006-06-08 20:36:05 +02:00
} else {
$redirect = 'users.php' ;
2017-12-01 00:11:00 +01:00
$referer = '' ;
2006-06-08 20:36:05 +02:00
}
2010-09-22 02:10:39 +02:00
$update = '' ;
2011-01-13 01:50:35 +01:00
switch ( $wp_list_table -> current_action () ) {
2005-07-12 17:53:13 +02:00
2017-12-01 00:11:00 +01:00
/* Bulk Dropdown menu Role changes */
case 'promote' :
check_admin_referer ( 'bulk-users' );
2004-05-17 22:34:05 +02:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'promote_users' ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to edit this user.' ), 403 );
}
2003-12-23 21:21:29 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) ) {
wp_redirect ( $redirect );
2020-05-26 11:37:10 +02:00
exit ;
2017-12-01 00:11:00 +01:00
}
2010-06-06 17:12:47 +02:00
2017-12-01 00:11:00 +01:00
$editable_roles = get_editable_roles ();
2021-01-07 17:23:07 +01:00
$role = $_REQUEST [ 'new_role' ];
2005-11-13 05:40:18 +01:00
2021-02-05 15:40:08 +01:00
// Mocking the `none` role so we are able to save it to the database
$editable_roles [ 'none' ] = array (
'name' => __ ( '— No role for this site —' ),
);
2017-12-01 00:11:00 +01:00
if ( ! $role || empty ( $editable_roles [ $role ] ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to give users that role.' ), 403 );
2015-09-03 10:54:24 +02:00
}
2010-06-06 17:05:18 +02:00
2021-02-05 15:40:08 +01:00
if ( 'none' === $role ) {
$role = '' ;
}
2023-06-04 04:35:19 +02:00
$user_ids = array_map ( 'intval' , ( array ) $_REQUEST [ 'users' ] );
$update = 'promote' ;
2006-02-12 08:53:23 +01:00
2023-06-04 04:35:19 +02:00
foreach ( $user_ids as $id ) {
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'promote_user' , $id ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to edit this user.' ), 403 );
}
2020-01-29 01:45:18 +01:00
// The new role of the current user must also have the promote_users cap or be a multisite super admin.
2023-06-04 04:35:19 +02:00
if ( $id === $current_user -> ID
&& ! $wp_roles -> role_objects [ $role ] -> has_cap ( 'promote_users' )
&& ! ( is_multisite () && current_user_can ( 'manage_network_users' ) )
) {
2017-12-01 00:11:00 +01:00
$update = 'err_admin_role' ;
continue ;
}
2005-03-09 23:49:42 +01:00
2017-12-01 00:11:00 +01:00
// If the user doesn't already belong to the blog, bail.
if ( is_multisite () && ! is_user_member_of_blog ( $id ) ) {
wp_die (
2018-02-19 03:13:32 +01:00
'<h1>' . __ ( 'Something went wrong.' ) . '</h1>' .
2017-12-01 00:11:00 +01:00
'<p>' . __ ( 'One of the selected users is not a member of this site.' ) . '</p>' ,
403
);
}
2003-12-23 21:21:29 +01:00
2017-12-01 00:11:00 +01:00
$user = get_userdata ( $id );
$user -> set_role ( $role );
}
2005-07-12 17:53:13 +02:00
2017-12-01 00:11:00 +01:00
wp_redirect ( add_query_arg ( 'update' , $update , $redirect ) );
2020-05-26 11:37:10 +02:00
exit ;
2003-12-23 21:21:29 +01:00
2017-12-01 00:11:00 +01:00
case 'dodelete' :
if ( is_multisite () ) {
wp_die ( __ ( 'User deletion is not allowed from this screen.' ), 400 );
}
2012-10-10 16:07:59 +02:00
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'delete-users' );
2003-12-23 21:21:29 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) ) {
wp_redirect ( $redirect );
2020-05-26 11:37:10 +02:00
exit ;
2017-12-01 00:11:00 +01:00
}
2006-06-08 20:36:05 +02:00
2023-06-04 04:35:19 +02:00
$user_ids = array_map ( 'intval' , ( array ) $_REQUEST [ 'users' ] );
2006-06-08 20:36:05 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'delete_option' ] ) ) {
2023-06-04 04:35:19 +02:00
$url = self_admin_url ( 'users.php?action=delete&users[]=' . implode ( '&users[]=' , $user_ids ) . '&error=true' );
2017-12-01 00:11:00 +01:00
$url = str_replace ( '&' , '&' , wp_nonce_url ( $url , 'bulk-users' ) );
wp_redirect ( $url );
exit ;
2005-11-13 05:40:18 +01:00
}
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'delete_users' ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to delete users.' ), 403 );
2005-07-12 17:53:13 +02:00
}
2003-12-23 21:21:29 +01:00
2017-12-01 00:11:00 +01:00
$update = 'del' ;
$delete_count = 0 ;
2003-12-23 21:21:29 +01:00
2023-06-04 04:35:19 +02:00
foreach ( $user_ids as $id ) {
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'delete_user' , $id ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to delete that user.' ), 403 );
}
2010-04-21 19:58:10 +02:00
2023-06-04 04:35:19 +02:00
if ( $id === $current_user -> ID ) {
2017-12-01 00:11:00 +01:00
$update = 'err_admin_del' ;
continue ;
}
2023-06-04 04:35:19 +02:00
2017-12-01 00:11:00 +01:00
switch ( $_REQUEST [ 'delete_option' ] ) {
case 'delete' :
wp_delete_user ( $id );
break ;
case 'reassign' :
wp_delete_user ( $id , $_REQUEST [ 'reassign_user' ] );
break ;
}
2023-06-04 04:35:19 +02:00
2017-12-01 00:11:00 +01:00
++ $delete_count ;
}
2004-05-17 22:34:05 +02:00
2017-12-01 00:11:00 +01:00
$redirect = add_query_arg (
array (
'delete_count' => $delete_count ,
'update' => $update ,
2018-08-17 03:51:36 +02:00
),
$redirect
2017-12-01 00:11:00 +01:00
);
wp_redirect ( $redirect );
2020-05-26 11:37:10 +02:00
exit ;
2003-12-08 02:28:41 +01:00
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
case 'resetpassword' :
check_admin_referer ( 'bulk-users' );
2023-06-04 04:35:19 +02:00
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
if ( ! current_user_can ( 'edit_users' ) ) {
2021-02-02 13:17:04 +01:00
$errors = new WP_Error ( 'edit_users' , __ ( 'Sorry, you are not allowed to edit users.' ) );
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
}
2023-06-04 04:35:19 +02:00
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) ) {
wp_redirect ( $redirect );
exit ();
}
2023-06-04 04:35:19 +02:00
$user_ids = array_map ( 'intval' , ( array ) $_REQUEST [ 'users' ] );
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
$reset_count = 0 ;
2023-06-04 04:35:19 +02:00
foreach ( $user_ids as $id ) {
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
if ( ! current_user_can ( 'edit_user' , $id ) ) {
2021-02-02 13:17:04 +01:00
wp_die ( __ ( 'Sorry, you are not allowed to edit this user.' ) );
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
}
if ( $id === $current_user -> ID ) {
$update = 'err_admin_reset' ;
continue ;
}
// Send the password reset link.
$user = get_userdata ( $id );
Users: Show "Password reset link sent" message only when finished.
When an admin sends a password reset link to a user (from the Users UI screen), the "finished" UI message:
>Password reset link sent.
is displayed on "finished" and no longer displayed on error.
**What is the change?**
Previously, the conditional (for incrementing the reset counter) checked for a truthy return from `retrieve_password()`. But `retrieve_password()` always returns a truthy state: `true` (meaning "finished") or an instance of `WP_Error`. Thus, checking for a truthy meant the "finished" message was sent on both "finished" and error/failed.
This fix checks for `retrieve_password()` returning `true` to indicate "finished".
**What is displayed on error?**
If `retrieve_password()` returns an instance of `WP_Error`, the following UI message is shown:
>Password reset links sent to 0 users.
The UI messages were not modified by this changeset.
Follow-up to [50129].
Props letraceursnork, prashantbhivsane, audrasjb, costdev, dilipbheda, hareesh-pillai, hellofromTonya, ironprogrammer, huzaifaalmesbah, marybaum, nicolefurlan, oglekler, petitphp, SergeyBiryukov.
Fixes #58407.
Built from https://develop.svn.wordpress.org/trunk@56937
git-svn-id: http://core.svn.wordpress.org/trunk@56448 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-15 16:04:23 +02:00
if ( true === retrieve_password ( $user -> user_login ) ) {
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
++ $reset_count ;
}
}
$redirect = add_query_arg (
array (
'reset_count' => $reset_count ,
'update' => 'resetpassword' ,
),
$redirect
);
wp_redirect ( $redirect );
exit ;
2017-12-01 00:11:00 +01:00
case 'delete' :
if ( is_multisite () ) {
wp_die ( __ ( 'User deletion is not allowed from this screen.' ), 400 );
}
2003-12-08 02:28:41 +01:00
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'bulk-users' );
2012-10-10 16:07:59 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) && empty ( $_REQUEST [ 'user' ] ) ) {
wp_redirect ( $redirect );
2020-05-26 11:37:10 +02:00
exit ;
2017-12-01 00:11:00 +01:00
}
2015-09-10 18:47:24 +02:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'delete_users' ) ) {
$errors = new WP_Error ( 'edit_users' , __ ( 'Sorry, you are not allowed to delete users.' ) );
}
2005-07-09 03:27:46 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) ) {
2023-06-04 04:35:19 +02:00
$user_ids = array ( ( int ) $_REQUEST [ 'user' ] );
2017-12-01 00:11:00 +01:00
} else {
2023-06-04 04:35:19 +02:00
$user_ids = array_map ( 'intval' , ( array ) $_REQUEST [ 'users' ] );
2017-12-01 00:11:00 +01:00
}
2023-06-04 04:35:19 +02:00
$all_user_ids = $user_ids ;
2019-08-25 22:03:57 +02:00
2023-06-04 04:35:19 +02:00
if ( in_array ( $current_user -> ID , $user_ids , true ) ) {
$user_ids = array_diff ( $user_ids , array ( $current_user -> ID ) );
2019-08-15 15:06:55 +02:00
}
2019-03-21 21:12:50 +01:00
/**
* 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
*
2020-07-23 02:52:05 +02:00
* @ param bool $users_have_additional_content Whether the users have additional content . Default false .
2023-06-04 04:35:19 +02:00
* @ param int [] $user_ids Array of IDs for users being deleted .
2019-03-21 21:12:50 +01:00
*/
2023-06-04 04:35:19 +02:00
$users_have_content = ( bool ) apply_filters ( 'users_have_additional_content' , false , $user_ids );
if ( $user_ids && ! $users_have_content ) {
if ( $wpdb -> get_var (
" SELECT ID FROM { $wpdb -> posts }
WHERE post_author IN ( " . implode( ',', $user_ids ) . ' )
LIMIT 1 '
) ) {
2019-03-21 21:12:50 +01:00
$users_have_content = true ;
2023-06-04 04:35:19 +02:00
} elseif ( $wpdb -> get_var (
" SELECT link_id FROM { $wpdb -> links }
WHERE link_owner IN ( " . implode( ',', $user_ids ) . ' )
LIMIT 1 '
) ) {
2019-03-21 21:12:50 +01:00
$users_have_content = true ;
}
2017-12-01 00:11:00 +01:00
}
if ( $users_have_content ) {
add_action ( 'admin_head' , 'delete_users_add_js' );
}
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2018-08-17 03:51:36 +02:00
?>
2023-06-04 04:35:19 +02:00
< form method = " post " name = " updateusers " id = " updateusers " >
2018-08-17 03:51:36 +02:00
< ? php wp_nonce_field ( 'delete-users' ); ?>
< ? php echo $referer ; ?>
2008-01-07 21:38:49 +01:00
2023-06-04 04:35:19 +02:00
< div class = " wrap " >
< h1 >< ? php _e ( 'Delete Users' ); ?> </h1>
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
< ? php
if ( isset ( $_REQUEST [ 'error' ] ) ) :
wp_admin_notice (
'<strong>' . __ ( 'Error:' ) . '</strong> ' . __ ( 'Please select an option.' ),
array (
'additional_classes' => array ( 'error' ),
)
);
endif ;
?>
2015-03-31 20:45:28 +02:00
2023-06-04 04:35:19 +02:00
< ? php if ( 1 === count ( $all_user_ids ) ) : ?>
< p >< ? php _e ( 'You have specified this user for deletion:' ); ?> </p>
2018-08-17 03:51:36 +02:00
< ? php else : ?>
2023-06-04 04:35:19 +02:00
< p >< ? php _e ( 'You have specified these users for deletion:' ); ?> </p>
2018-08-17 03:51:36 +02:00
< ? php endif ; ?>
2015-03-31 20:45:28 +02:00
2023-06-04 04:35:19 +02:00
< ul >
2018-08-17 03:51:36 +02:00
< ? php
$go_delete = 0 ;
2023-06-04 04:35:19 +02:00
foreach ( $all_user_ids as $id ) {
2018-08-17 03:51:36 +02:00
$user = get_userdata ( $id );
2023-06-04 04:35:19 +02:00
if ( $id === $current_user -> ID ) {
echo '<li>' ;
printf (
/* translators: 1: User ID, 2: User login. */
__ ( 'ID #%1$s: %2$s <strong>The current user will not be deleted.</strong>' ),
$id ,
$user -> user_login
);
echo " </li> \n " ;
2018-08-17 03:51:36 +02:00
} else {
2023-06-04 04:35:19 +02:00
echo '<li>' ;
printf (
'<input type="hidden" name="users[]" value="%s" />' ,
esc_attr ( $id )
);
printf (
/* translators: 1: User ID, 2: User login. */
__ ( 'ID #%1$s: %2$s' ),
$id ,
$user -> user_login
);
echo " </li> \n " ;
2023-09-09 11:28:26 +02:00
++ $go_delete ;
2018-08-17 03:51:36 +02:00
}
}
?>
2023-06-04 04:35:19 +02:00
</ ul >
2018-08-17 03:51:36 +02:00
< ? php
if ( $go_delete ) :
2015-09-10 18:47:24 +02:00
2018-08-17 03:51:36 +02:00
if ( ! $users_have_content ) :
?>
2023-06-04 04:35:19 +02:00
< input type = " hidden " name = " delete_option " value = " delete " />
2018-08-17 03:51:36 +02:00
< ? php else : ?>
2023-06-04 04:35:19 +02:00
< fieldset >
2023-04-04 23:12:24 +02:00
< ? php if ( 1 === $go_delete ) : ?>
2023-06-04 04:35:19 +02:00
< p >< legend >< ? php _e ( 'What should be done with content owned by this user?' ); ?> </legend></p>
< ? php else : ?>
< p >< legend >< ? php _e ( 'What should be done with content owned by these users?' ); ?> </legend></p>
< ? php endif ; ?>
< ul style = " list-style:none; " >
< li >
< input type = " radio " id = " delete_option0 " name = " delete_option " value = " delete " />
< label for = " delete_option0 " >< ? php _e ( 'Delete all content.' ); ?> </label>
</ li >
< li >
< input type = " radio " id = " delete_option1 " name = " delete_option " value = " reassign " />
< label for = " delete_option1 " >< ? php _e ( 'Attribute all content to:' ); ?> </label>
< ? php
wp_dropdown_users (
array (
'name' => 'reassign_user' ,
'exclude' => $user_ids ,
'show' => 'display_name_with_login' ,
)
);
?>
</ li >
</ ul >
</ fieldset >
2019-01-12 07:41:52 +01:00
< ? php
2023-06-04 04:35:19 +02:00
endif ;
2019-01-12 07:41:52 +01:00
/**
* Fires at the end of the delete users form prior to the confirm button .
*
* @ since 4.0 . 0
2023-06-04 04:35:19 +02:00
* @ since 4.5 . 0 The `$user_ids` parameter was added .
2019-01-12 07:41:52 +01:00
*
* @ param WP_User $current_user WP_User object for the current user .
2023-06-04 04:35:19 +02:00
* @ param int [] $user_ids Array of IDs for users being deleted .
2019-01-12 07:41:52 +01:00
*/
2023-06-04 04:35:19 +02:00
do_action ( 'delete_user_form' , $current_user , $user_ids );
2019-01-12 07:41:52 +01:00
?>
2023-06-04 04:35:19 +02:00
< input type = " hidden " name = " action " value = " dodelete " />
2018-08-17 03:51:36 +02:00
< ? php submit_button ( __ ( 'Confirm Deletion' ), 'primary' ); ?>
2023-06-04 04:35:19 +02:00
< ? php else : ?>
< p >< ? php _e ( 'There are no valid users selected for deletion.' ); ?> </p>
< ? php endif ; ?>
</ div ><!-- . wrap -->
</ form ><!-- #updateusers -->
2018-08-17 03:51:36 +02:00
< ? php
2003-12-08 02:28:41 +01:00
2017-12-01 00:11:00 +01:00
break ;
2003-12-08 02:28:41 +01:00
2017-12-01 00:11:00 +01:00
case 'doremove' :
check_admin_referer ( 'remove-users' );
2010-04-21 19:43:53 +02:00
2017-12-01 00:11:00 +01:00
if ( ! is_multisite () ) {
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
wp_die ( __ ( 'You cannot remove users.' ), 400 );
2017-12-01 00:11:00 +01:00
}
2011-02-10 21:37:26 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) ) {
wp_redirect ( $redirect );
exit ;
}
2010-04-21 19:43:53 +02:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'remove_users' ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to remove users.' ), 403 );
}
2010-04-21 19:43:53 +02:00
2023-06-04 04:35:19 +02:00
$user_ids = array_map ( 'intval' , ( array ) $_REQUEST [ 'users' ] );
$update = 'remove' ;
2010-04-21 19:43:53 +02:00
2023-06-04 04:35:19 +02:00
foreach ( $user_ids as $id ) {
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'remove_user' , $id ) ) {
$update = 'err_admin_remove' ;
continue ;
}
2023-06-04 04:35:19 +02:00
2017-12-01 00:11:00 +01:00
remove_user_from_blog ( $id , $blog_id );
2010-04-21 19:43:53 +02:00
}
2017-12-01 00:11:00 +01:00
$redirect = add_query_arg ( array ( 'update' => $update ), $redirect );
wp_redirect ( $redirect );
exit ;
2010-04-21 19:43:53 +02:00
2017-12-01 00:11:00 +01:00
case 'remove' :
check_admin_referer ( 'bulk-users' );
2010-04-21 19:43:53 +02:00
2017-12-01 00:11:00 +01:00
if ( ! is_multisite () ) {
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
wp_die ( __ ( 'You cannot remove users.' ), 400 );
2017-12-01 00:11:00 +01:00
}
2011-02-10 21:37:26 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) && empty ( $_REQUEST [ 'user' ] ) ) {
wp_redirect ( $redirect );
2020-05-26 11:37:10 +02:00
exit ;
2017-12-01 00:11:00 +01:00
}
2010-04-21 19:43:53 +02:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'remove_users' ) ) {
$error = new WP_Error ( 'edit_users' , __ ( 'Sorry, you are not allowed to remove users.' ) );
}
2010-04-21 19:43:53 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $_REQUEST [ 'users' ] ) ) {
2023-06-04 04:35:19 +02:00
$user_ids = array ( ( int ) $_REQUEST [ 'user' ] );
2017-12-01 00:11:00 +01:00
} else {
2023-06-04 04:35:19 +02:00
$user_ids = array_map ( 'intval' , ( array ) $_REQUEST [ 'users' ] );
2017-12-01 00:11:00 +01:00
}
2010-04-21 19:43:53 +02:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2018-08-17 03:51:36 +02:00
?>
2023-06-04 04:35:19 +02:00
< form method = " post " name = " updateusers " id = " updateusers " >
2018-08-17 03:51:36 +02:00
< ? php wp_nonce_field ( 'remove-users' ); ?>
< ? php echo $referer ; ?>
2010-04-21 19:43:53 +02:00
2023-06-04 04:35:19 +02:00
< div class = " wrap " >
< h1 >< ? php _e ( 'Remove Users from Site' ); ?> </h1>
2015-07-27 01:19:24 +02:00
2023-06-04 04:35:19 +02:00
< ? php if ( 1 === count ( $user_ids ) ) : ?>
< p >< ? php _e ( 'You have specified this user for removal:' ); ?> </p>
2018-08-17 03:51:36 +02:00
< ? php else : ?>
2023-06-04 04:35:19 +02:00
< p >< ? php _e ( 'You have specified these users for removal:' ); ?> </p>
2018-08-17 03:51:36 +02:00
< ? php endif ; ?>
2015-07-27 01:19:24 +02:00
2023-06-04 04:35:19 +02:00
< ul >
2018-08-17 03:51:36 +02:00
< ? php
$go_remove = false ;
2023-06-04 04:35:19 +02:00
foreach ( $user_ids as $id ) {
2018-08-17 03:51:36 +02:00
$user = get_userdata ( $id );
2023-06-04 04:35:19 +02:00
2018-08-17 03:51:36 +02:00
if ( ! current_user_can ( 'remove_user' , $id ) ) {
2023-06-04 04:35:19 +02:00
echo '<li>' ;
printf (
/* translators: 1: User ID, 2: User login. */
__ ( 'ID #%1$s: %2$s <strong>Sorry, you are not allowed to remove this user.</strong>' ),
$id ,
$user -> user_login
);
echo " </li> \n " ;
2018-08-17 03:51:36 +02:00
} else {
2023-06-04 04:35:19 +02:00
echo '<li>' ;
printf (
'<input type="hidden" name="users[]" value="%s" />' ,
esc_attr ( $id )
);
printf (
/* translators: 1: User ID, 2: User login. */
__ ( 'ID #%1$s: %2$s' ),
$id ,
$user -> user_login
);
echo " </li> \n " ;
2018-08-17 03:51:36 +02:00
$go_remove = true ;
}
}
?>
2023-06-04 04:35:19 +02:00
</ ul >
2018-08-17 03:51:36 +02:00
< ? php if ( $go_remove ) : ?>
2023-06-04 04:35:19 +02:00
< input type = " hidden " name = " action " value = " doremove " />
2018-08-17 03:51:36 +02:00
< ? php submit_button ( __ ( 'Confirm Removal' ), 'primary' ); ?>
2023-06-04 04:35:19 +02:00
< ? php else : ?>
< p >< ? php _e ( 'There are no valid users selected for removal.' ); ?> </p>
< ? php endif ; ?>
</ div ><!-- . wrap -->
</ form ><!-- #updateusers -->
2018-08-17 03:51:36 +02:00
< ? php
2010-04-21 19:43:53 +02:00
2017-12-01 00:11:00 +01:00
break ;
2008-02-20 06:45:16 +01:00
2017-12-01 00:11:00 +01:00
default :
if ( ! empty ( $_GET [ '_wp_http_referer' ] ) ) {
wp_redirect ( remove_query_arg ( array ( '_wp_http_referer' , '_wpnonce' ), wp_unslash ( $_SERVER [ 'REQUEST_URI' ] ) ) );
exit ;
}
2008-02-20 06:45:16 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_list_table -> current_action () && ! empty ( $_REQUEST [ 'users' ] ) ) {
2019-12-03 14:58:05 +01:00
$screen = get_current_screen () -> id ;
2017-12-01 00:11:00 +01:00
$sendback = wp_get_referer ();
2023-06-04 04:35:19 +02:00
$user_ids = array_map ( 'intval' , ( array ) $_REQUEST [ 'users' ] );
2016-09-23 22:33:30 +02:00
2019-12-03 14:58:05 +01:00
/** This action is documented in wp-admin/edit.php */
2023-06-04 04:35:19 +02:00
$sendback = apply_filters ( " handle_bulk_actions- { $screen } " , $sendback , $wp_list_table -> current_action (), $user_ids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2016-09-23 22:33:30 +02:00
2017-12-01 00:11:00 +01:00
wp_safe_redirect ( $sendback );
exit ;
}
2016-09-23 22:33:30 +02:00
2017-12-01 00:11:00 +01:00
$wp_list_table -> prepare_items ();
$total_pages = $wp_list_table -> get_pagination_arg ( 'total_pages' );
2023-06-04 04:35:19 +02:00
2017-12-01 00:11:00 +01:00
if ( $pagenum > $total_pages && $total_pages > 0 ) {
wp_redirect ( add_query_arg ( 'paged' , $total_pages ) );
exit ;
}
2012-03-24 05:54:58 +01:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2017-12-01 00:11:00 +01:00
$messages = array ();
if ( isset ( $_GET [ 'update' ] ) ) :
switch ( $_GET [ 'update' ] ) {
case 'del' :
case 'del_many' :
$delete_count = isset ( $_GET [ 'delete_count' ] ) ? ( int ) $_GET [ 'delete_count' ] : 0 ;
2023-06-04 04:35:19 +02:00
if ( 1 === $delete_count ) {
2017-12-01 00:11:00 +01:00
$message = __ ( 'User deleted.' );
} else {
2019-09-03 02:41:05 +02:00
/* translators: %s: Number of users. */
2017-12-01 00:11:00 +01:00
$message = _n ( '%s user deleted.' , '%s users deleted.' , $delete_count );
}
2023-09-14 04:15:17 +02:00
$message = sprintf ( $message , number_format_i18n ( $delete_count ) );
$messages [] = wp_get_admin_notice (
$message ,
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
2017-12-01 00:11:00 +01:00
break ;
case 'add' :
2019-06-15 20:57:52 +02:00
$message = __ ( 'New user created.' );
2019-07-01 14:52:01 +02:00
$user_id = isset ( $_GET [ 'id' ] ) ? $_GET [ 'id' ] : false ;
if ( $user_id && current_user_can ( 'edit_user' , $user_id ) ) {
2019-06-15 20:57:52 +02:00
$message .= sprintf (
2023-06-04 04:35:19 +02:00
' <a href="%1$s">%2$s</a>' ,
2017-12-01 00:11:00 +01:00
esc_url (
add_query_arg (
2018-08-17 03:51:36 +02:00
'wp_http_referer' ,
urlencode ( wp_unslash ( $_SERVER [ 'REQUEST_URI' ] ) ),
2017-12-01 00:11:00 +01:00
self_admin_url ( 'user-edit.php?user_id=' . $user_id )
)
2019-06-15 20:57:52 +02:00
),
__ ( 'Edit user' )
);
2017-12-01 00:11:00 +01:00
}
2019-06-15 20:57:52 +02:00
2023-09-14 04:15:17 +02:00
$messages [] = wp_get_admin_notice (
$message ,
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
break ;
case 'resetpassword' :
$reset_count = isset ( $_GET [ 'reset_count' ] ) ? ( int ) $_GET [ 'reset_count' ] : 0 ;
if ( 1 === $reset_count ) {
$message = __ ( 'Password reset link sent.' );
} else {
/* translators: %s: Number of users. */
2021-02-02 13:17:04 +01:00
$message = _n ( 'Password reset links sent to %s user.' , 'Password reset links sent to %s users.' , $reset_count );
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
}
2023-09-14 04:15:17 +02:00
$message = sprintf ( $message , number_format_i18n ( $reset_count ) );
$messages [] = wp_get_admin_notice (
$message ,
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
2017-12-01 00:11:00 +01:00
break ;
case 'promote' :
2023-09-14 04:15:17 +02:00
$messages [] = wp_get_admin_notice (
__ ( 'Changed roles.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
2017-12-01 00:11:00 +01:00
break ;
case 'err_admin_role' :
2023-09-14 04:15:17 +02:00
$messages [] = wp_get_admin_notice (
__ ( 'The current user’s role must have user editing capabilities.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'error' ),
'dismissible' => true ,
)
);
$messages [] = wp_get_admin_notice (
__ ( 'Other user roles have been changed.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
2017-12-01 00:11:00 +01:00
break ;
case 'err_admin_del' :
2023-09-14 04:15:17 +02:00
$messages [] = wp_get_admin_notice (
__ ( 'You cannot delete the current user.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'error' ),
'dismissible' => true ,
)
);
$messages [] = wp_get_admin_notice (
__ ( 'Other users have been deleted.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
2017-12-01 00:11:00 +01:00
break ;
case 'remove' :
2023-09-14 04:15:17 +02:00
$messages [] = wp_get_admin_notice (
__ ( 'User removed from this site.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' , 'fade' ),
'dismissible' => true ,
)
);
2017-12-01 00:11:00 +01:00
break ;
case 'err_admin_remove' :
2023-09-14 04:15:17 +02:00
$messages [] = wp_get_admin_notice (
__ ( 'You cannot remove the current user.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'error' ),
'dismissible' => true ,
)
);
$messages [] = wp_get_admin_notice (
__ ( 'Other users have been removed.' ),
array (
'id' => 'message' ,
'additional_classes' => array ( 'updated' , 'fade' ),
'dismissible' => true ,
)
);
2017-12-01 00:11:00 +01:00
break ;
2015-03-31 20:45:28 +02:00
}
2017-12-01 00:11:00 +01:00
endif ;
2018-08-17 03:51:36 +02:00
?>
2006-06-08 20:36:05 +02:00
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
< ? php
if ( isset ( $errors ) && is_wp_error ( $errors ) ) :
$error_message = '' ;
foreach ( $errors -> get_error_messages () as $err ) {
$error_message .= " <li> $err </li> \n " ;
}
wp_admin_notice (
'<ul>' . $error_message . '</ul>' ,
array (
'additional_classes' => array ( 'error' ),
)
);
2023-06-04 04:35:19 +02:00
endif ;
2017-12-01 00:11:00 +01:00
2019-01-12 07:41:52 +01:00
if ( ! empty ( $messages ) ) {
foreach ( $messages as $msg ) {
echo $msg ;
}
}
?>
2006-06-08 20:36:05 +02:00
2023-06-04 04:35:19 +02:00
< div class = " wrap " >
< h1 class = " wp-heading-inline " >
< ? php echo esc_html ( $title ); ?>
</ h1 >
2016-12-07 19:29:38 +01:00
2018-08-17 03:51:36 +02:00
< ? php
if ( current_user_can ( 'create_users' ) ) {
2023-06-04 04:35:19 +02:00
printf (
'<a href="%1$s" class="page-title-action">%2$s</a>' ,
esc_url ( admin_url ( 'user-new.php' ) ),
2023-09-05 21:26:26 +02:00
esc_html__ ( 'Add New User' )
2023-06-04 04:35:19 +02:00
);
} elseif ( is_multisite () && current_user_can ( 'promote_users' ) ) {
printf (
'<a href="%1$s" class="page-title-action">%2$s</a>' ,
esc_url ( admin_url ( 'user-new.php' ) ),
2023-09-05 21:26:26 +02:00
esc_html__ ( 'Add Existing User' )
2023-06-04 04:35:19 +02:00
);
}
if ( strlen ( $usersearch ) ) {
echo '<span class="subtitle">' ;
printf (
/* translators: %s: Search query. */
__ ( 'Search results for: %s' ),
'<strong>' . esc_html ( $usersearch ) . '</strong>'
);
echo '</span>' ;
}
?>
2016-12-07 19:29:38 +01:00
2023-06-04 04:35:19 +02:00
< hr class = " wp-header-end " >
2008-09-19 07:31:00 +02:00
2018-08-17 03:51:36 +02:00
< ? php $wp_list_table -> views (); ?>
2008-08-20 23:42:31 +02:00
2023-06-04 04:35:19 +02:00
< form method = " get " >
2010-12-10 21:22:34 +01:00
2018-08-17 03:51:36 +02:00
< ? php $wp_list_table -> search_box ( __ ( 'Search Users' ), 'user' ); ?>
2010-12-10 21:22:34 +01:00
2018-08-17 03:51:36 +02:00
< ? php if ( ! empty ( $_REQUEST [ 'role' ] ) ) { ?>
2023-06-04 04:35:19 +02:00
< input type = " hidden " name = " role " value = " <?php echo esc_attr( $_REQUEST['role'] ); ?> " />
< ? php } ?>
2017-01-21 03:21:43 +01:00
2018-08-17 03:51:36 +02:00
< ? php $wp_list_table -> display (); ?>
2006-06-08 20:36:05 +02:00
2023-06-04 04:35:19 +02:00
</ form >
< div class = " clear " ></ div >
</ div ><!-- . wrap -->
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
break ;
2011-01-13 01:50:35 +01:00
2020-01-29 01:45:18 +01:00
} // End of the $doaction switch.
2004-08-23 01:24:50 +02:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-footer.php' ;