Action hook 'wp_authorize_application_password_form_approved_no_js'
in WP Core File wp-admin/authorize-application.php at line 236
Description
Fires in the Authorize Application Password new password section in the no-JS version. In most cases, this should be used in combination with the {@see 'wp_application_passwords_approve_app_request_success'} action to ensure that both the JS and no-JS variants are handled.
Occurrences
Filename |
Line Number |
wp-admin/authorize-application.php |
236 |
Parameters
Type |
Name |
Description |
string |
$new_password |
The newly generated application password. |
array |
$request |
The array of request data. All arguments are optional and may be empty. |
WP_User |
$user |
The user authorizing the application. |
PHP Doc
/**
* Fires in the Authorize Application Password new password section in the no-JS version.
*
* In most cases, this should be used in combination with the {@see 'wp_application_passwords_approve_app_request_success'}
* action to ensure that both the JS and no-JS variants are handled.
*
* @since 5.6.0
* @since 5.6.1 Corrected action name and signature.
*
* @param string $new_password The newly generated application password.
* @param array $request The array of request data. All arguments are optional and may be empty.
* @param WP_User $user The user authorizing the application.
*/