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

validate_collection_parent()

Description

Validate a collection parent value

Parameters

ColumnTypeDefaultDescription
$c int|array Collection ref -or- collection data as returned by {@see get_collection()}

Return

null|integer

Location

include/collections_functions.php lines 5830 to 5848

Definition

 
function validate_collection_parent($c)
    {
    if(!
is_array($c) && !is_int($c))
        {
        return 
null;
        }
    
    
$collection $c;
    if(!
is_array($c) && is_int($c))
        {
        
$collection get_collection($c);
        if(
$collection === false)
            {
            return 
null;
            }
        }

    return 
is_null($collection["parent"]) ? null : (int) $collection["parent"];
    }

This article was last updated 13th December 2024 20:35 Europe/London time based on the source file dated 12th December 2024 10:55 Europe/London time.