Uses
Uses | Description |
---|---|
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |
Prepares setting validity for exporting to the client (JS).
Converts WP_Error
instance into array suitable for passing into the wp.customize.Notification
JS model.
(true|WP_Error) (Required) Setting validity.
(true|array) If $validity
was a WP_Error, the error codes will be array-mapped to their respective message
and data
to pass into the wp.customize.Notification
JS model.
File: wp-includes/class-wp-customize-manager.php
public function prepare_setting_validity_for_js( $validity ) { if ( is_wp_error( $validity ) ) { $notification = array(); foreach ( $validity->errors as $error_code => $error_messages ) { $notification[ $error_code ] = array( 'message' => join( ' ', $error_messages ), 'data' => $validity->get_error_data( $error_code ), ); } return $notification; } else { return true; } }
Version | Description |
---|---|
4.6.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_manager/prepare_setting_validity_for_js