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

get_research_request_collection()

Description

Retrieves the collection reference associated with a given research request.

Parameters

ColumnTypeDefaultDescription
$ref int The reference number of the research request.

Return

int|false The collection reference if found, or false if not.

Location

include/research_functions.php lines 252 to 257

Definition

 
function get_research_request_collection($ref)
    {
    
$parameters=array("i",$ref);
    
$return=ps_value("select collection value from research_request where ref=?",$parameters,0);
    if ((
$return==0) || (strlen($return)==0)) {return false;} else {return $return;}
    }

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