Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

get_collection_resource_comment()

Description

Return comments and other columns stored in the collection_resource join.

Parameters

ColumnTypeDefaultDescription
$resource integer
$collection integer

Return

array|bool Returns found record data, false otherwise

Location

include/collections_functions.php lines 3235 to 3243

Definition

 
function get_collection_resource_comment($resource,$collection)
    {
    
$data=ps_query("select " columns_in("collection_resource") . " from collection_resource where collection=? and resource=?",array("i",$collection,"i",$resource),"");
    if (!isset(
$data[0]))
        {
        return 
false;
        }
    return 
$data[0];
    }

This article was last updated 19th March 2024 04:05 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.