Users: Remove password reset links when the feature is not allowed for a specific user.
This also introduces `wp_is_password_reset_allowed_for_user()` which returns `false` when password reset is not allowed for a specific user. This can be filtered by developers using the existing `allow_password_reset` hook. Props ocean90, cshark, robinwpdeveloper, tahmina1du, kraftbj. Fixes #58194. Built from https://develop.svn.wordpress.org/trunk@56150 git-svn-id: http://core.svn.wordpress.org/trunk@55662 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -502,6 +502,7 @@ class WP_Users_List_Table extends WP_List_Table {
|
||||
// Add a link to send the user a reset password link by email.
|
||||
if ( get_current_user_id() !== $user_object->ID
|
||||
&& current_user_can( 'edit_user', $user_object->ID )
|
||||
&& true === wp_is_password_reset_allowed_for_user( $user_object )
|
||||
) {
|
||||
$actions['resetpassword'] = "<a class='resetpassword' href='" . wp_nonce_url( "users.php?action=resetpassword&users=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Send password reset' ) . '</a>';
|
||||
}
|
||||
|
||||
@@ -681,7 +681,7 @@ switch ( $action ) {
|
||||
<?php endif; // End Show Password Fields. ?>
|
||||
|
||||
<?php // Allow admins to send reset password link. ?>
|
||||
<?php if ( ! IS_PROFILE_PAGE ) : ?>
|
||||
<?php if ( ! IS_PROFILE_PAGE && true === wp_is_password_reset_allowed_for_user( $profile_user ) ) : ?>
|
||||
<tr class="user-generate-reset-link-wrap hide-if-no-js">
|
||||
<th><?php _e( 'Password Reset' ); ?></th>
|
||||
<td>
|
||||
|
||||
Reference in New Issue
Block a user