Collections functions
General functions
Node 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/iiif_functions.php lines 1529 to 1537

Definition

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

This article was last updated 19th March 2024 09:05 Europe/London time based on the source file dated 8th March 2024 15:10 Europe/London time.