node_is_active()

Description

Helper function to check if a node is active
Note: a node here requires the "active" key.

Parameters

ColumnTypeDefaultDescription
$node: array
$keyword string
$readonly: bool
0|1} array{'active': $node A node structure with at least the "active" key present

Location

include/node_functions.php lines 2865 to 2868

Definition

 
function node_is_active(array $node): bool
{
    return 
$node['active'] === 1;
}

This article was last updated 4th April 2025 21:35 Europe/London time based on the source file dated 3rd February 2025 20:05 Europe/London time.