getAnnotation()

Description

Get annotation by ID

Parameters

ColumnTypeDefaultDescription
$ref integer Annotation ID

Return

array

Location

include/annotation_functions.php lines 10 to 23

Definition

 
function getAnnotation($ref)
{
    if (
>= $ref) {
        return array();
    }

    
$return ps_query("SELECT " columns_in("annotation") . " FROM annotation WHERE ref = ?", array("i",$ref));

    if (
count($return)) {
        
$return $return[0];
    }

    return 
$return;
}

This article was last updated 5th April 2025 11:05 Europe/London time based on the source file dated 27th January 2025 17:10 Europe/London time.