WP_Customize_Manager::prepare_setting_validity_for_js
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.
Метод класса: WP_Customize_Manager{}
Хуков нет.
Возвращает
true|Массив. 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.
Использование
$WP_Customize_Manager = new WP_Customize_Manager(); $WP_Customize_Manager->prepare_setting_validity_for_js( $validity );
- $validity(true|WP_Error) (обязательный)
- Setting validity.
Список изменений
| С версии 4.6.0 | Введена. |
Код WP_Customize_Manager::prepare_setting_validity_for_js() WP Customize Manager::prepare setting validity for js WP 7.0
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' => implode( ' ', $error_messages ),
'data' => $validity->get_error_data( $error_code ),
);
}
return $notification;
} else {
return true;
}
}