WP_REST_Application_Passwords_Controller::update_item_permissions_check() public WP 5.6.0
Checks if a given request has access to update application passwords.
{} It's a method of the class: WP_REST_Application_Passwords_Controller{}
No Hooks.
Return
true/WP_Error. True if the request has access to create items, WP_Error object otherwise.
Usage
$WP_REST_Application_Passwords_Controller = new WP_REST_Application_Passwords_Controller(); $WP_REST_Application_Passwords_Controller->update_item_permissions_check( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
Since 5.6.0 | Introduced. |
Code of WP_REST_Application_Passwords_Controller::update_item_permissions_check() WP REST Application Passwords Controller::update item permissions check WP 5.6
public function update_item_permissions_check( $request ) {
return $this->do_permissions_check( $request );
}