Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test 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 17th November 2024 15:05 Europe/London time based on the source file dated 18th August 2023 11:30 Europe/London time.