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 90 to 95

Definition

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

This article was last updated 14th July 2025 08:05 Europe/London time based on the source file dated 21st January 2025 15:20 Europe/London time.