Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

ajax_response_fail()

Description

Builds the correct response expected for failures.

When a call is rejected due to invalid data or call conditions, the response data key contains an object explaining
what went wrong, typically a hash of validation errors.

the response objects' keys SHOULD correspond to those POST values. If generic, use message key
instead (@see ajax_build_message() ).

Parameters

ColumnTypeDefaultDescription
$data array Provides details of why the request failed. If the reasons for failure correspond to POST values,

Return

array

Location

include/ajax_functions.php lines 94 to 99

Definition

 
function ajax_response_fail(array $data)
    {
    return array(
        
"status" => "fail",
        
"data" => $data);
    }

This article was last updated 19th March 2024 09:05 Europe/London time based on the source file dated 18th August 2023 11:30 Europe/London time.