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

iiif_error()

Description

Handle a IIIF error.

Parameters

ColumnTypeDefaultDescription
$errorcode integer 404 The error code
$errors array array An array of errors

Return

void

Location

include/api_functions.php lines 391 to 400

Definition

 
function iiif_error($errorcode 404$errors = array())
    {
    global 
$iiif_debug;
    if(
function_exists("http_response_code"))
        {
        
http_response_code($errorcode); # Send error status
        
}
    echo 
json_encode($errors);     
    exit();
    }

This article was last updated 21st November 2023 21:35 Europe/London time based on the source file dated 17th November 2023 18:27 Europe/London time.