wpseek.com
A WordPress-centric search engine for devs and theme authors
rest_convert_error_to_response › WordPress Function
Since5.7.0
Deprecatedn/a
› rest_convert_error_to_response ( $error )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Converts an error to a response object.
This iterates over all error codes and messages to change it into a flat array. This enables simpler client behavior, as it is represented as a list in JSON rather than an object/map.Related Functions: rest_ensure_response, wp_convert_hr_to_bytes, convert_to_screen, wp_convert_bytes_to_hr, rest_get_route_for_post
Source
function rest_convert_error_to_response( $error ) { $status = array_reduce( $error->get_all_error_data(), static function ( $status, $error_data ) { return is_array( $error_data ) && isset( $error_data['status'] ) ? $error_data['status'] : $status; }, 500 ); $errors = array(); foreach ( (array) $error->errors as $code => $messages ) { $all_data = $error->get_all_error_data( $code ); $last_data = array_pop( $all_data ); foreach ( (array) $messages as $message ) { $formatted = array( 'code' => $code, 'message' => $message, 'data' => $last_data, ); if ( $all_data ) { $formatted['additional_data'] = $all_data; } $errors[] = $formatted; } } $data = $errors[0]; if ( count( $errors ) > 1 ) { // Remove the primary error. array_shift( $errors ); $data['additional_errors'] = $errors; } return new WP_REST_Response( $data, $status ); }