node_orderby_comparator()

Description

Comparator function for uasort to allow sorting of node array by order_by field


<0 means $n1 less than $n2
>0 means $n1 greater than $n2

Parameters

ColumnTypeDefaultDescription
$n1 array Node one to compare
$n2 string Node two to compare

Return

0 means $n1 equals $n2

Location

include/node_functions.php lines 1833 to 1836

Definition

 
function node_orderby_comparator($n1$n2)
{
    return 
$n1["order_by"] - $n2["order_by"];
}

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