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

relate_to_collection()

Parameters

ColumnTypeDefaultDescription
$ref
$collection

Location

include/collections_functions.php lines 3327 to 3341

Definition

 
function relate_to_collection($ref,$collection
    {
    
$colresources get_collection_resources($collection);
    
ps_query("delete from resource_related where resource= ? and related in ("ps_param_insert(count($colresources)) .")"array_merge(['i'$ref], ps_param_fill($colresources'i')));  
    
$params = [];
    foreach(
$colresources as $colresource)
        {
        
$params array_merge($params, ['i'$ref'i'$colresource]);
        }
    
ps_query(
        
"INSERT INTO resource_related (resource,related) 
            VALUES "
implode(', ',array_fill(0count($colresources), '(?, ?)')),
        
$params
    
);
    }

This article was last updated 17th November 2024 15:35 Europe/London time based on the source file dated 13th November 2024 15:50 Europe/London time.