WP_REST_Application_Passwords_Controller::do_permissions_check
Deprecated since 5.7.0. It is no longer supported and may be removed in future releases. Use
`edit_user` directly or one of specific meta capabilities introduced in 5.7.0 instead.Performs a permissions check for the request.
Method of the class: WP_REST_Application_Passwords_Controller{}
No Hooks.
Returns
true|WP_Error.
Usage
// protected - for code of main (parent) or child class $result = $this->do_permissions_check( $request );
- $request(WP_REST_Request) (required)
- .
Changelog
| Since 5.6.0 | Introduced. |
| Deprecated since 5.7.0 | Use edit_user directly or one of the specific meta capabilities introduced in 5.7.0. |
WP_REST_Application_Passwords_Controller::do_permissions_check() WP REST Application Passwords Controller::do permissions check code WP 6.9.1
protected function do_permissions_check( $request ) {
_deprecated_function( __METHOD__, '5.7.0' );
$user = $this->get_user( $request );
if ( is_wp_error( $user ) ) {
return $user;
}
if ( ! current_user_can( 'edit_user', $user->ID ) ) {
return new WP_Error(
'rest_cannot_manage_application_passwords',
__( 'Sorry, you are not allowed to manage application passwords for this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}