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

ajax_send_text_response()

Description

Send AJAX text/html response back to the client together with the appropriate HTTP status code

Parameters

ColumnTypeDefaultDescription
$code integer HTTP status code for this response
$response string Response data (text/html)

Return

void

Location

include/ajax_functions.php lines 59 to 64

Definition

 
function ajax_send_text_response($code$response)
    {
    
http_response_code($code);
    echo 
$response;
    exit();
    }

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