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

can_edit_upload_share()

Description

Check if user can edit an existing upload share

Parameters

ColumnTypeDefaultDescription
$collection int Collection ID of share
$uploadkey string External upload key

Return

bool

Location

include/collections_functions.php lines 5932 to 5943

Definition

 
function can_edit_upload_share($collection$uploadkey)
{
    global 
$userref;
    if (
checkperm('a')) {
        return 
true;
    }
    
$share_details get_external_shares(array("share_collection" => $collection,"share_type" => 1"access_key" => $uploadkey));
    
$details = isset($share_details[0]) ? $share_details[0] : array();
    return
        (isset(
$details["user"]) && $details["user"] == $userref)
        || (
checkperm("ex") && array_key_exists("expires"$details) && empty($details["expires"]));
}

This article was last updated 15th February 2025 20:35 Europe/London time based on the source file dated 13th February 2025 10:30 Europe/London time.