Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test functions

compute_nodes_by_parent()

Description

Find all nodes with parent

Parameters

ColumnTypeDefaultDescription
$nodes array List of nodes to search through (MUST contain elements with at least the "parent" index)
$id: int array_keysarray_column$nodes
'parent'
$id; array; foreach$found_nodes_keys as $nodes_key
$id integer Parent node ref to search by

Return

array

Location

include/node_functions.php lines 2356 to 2372

Definition

 
function compute_nodes_by_parent(array $nodesint $id): array
    {
    
$found_nodes_keys array_keys(array_column($nodes'parent'), $id);

    
$result = array();
    foreach(
$found_nodes_keys as $nodes_key)
        {
        if(!isset(
$nodes[$nodes_key]))
            {
            continue;
            }

        
$result[] = $nodes[$nodes_key];
        }

    return 
$result;
    }

This article was last updated 17th November 2024 15:05 Europe/London time based on the source file dated 28th October 2024 11:15 Europe/London time.