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

collection_download_log_resource_ready()

Description

Update the resource log to show the download during a collection download.

Parameters

ColumnTypeDefaultDescription
$dl_data array Array of collection download data passed from process_collection_download()
$tmpfile string Temp download file path
$ref integer The resource ID
$email string "" Email address of downloader

Return

void

Location

include/collections_functions.php lines 4480 to 4496

Definition

 
function collection_download_log_resource_ready(array $dl_data$tmpfile$refstring $email "")
{
    
// Build an array of paths so we can clean up any exiftool-modified files.
    
if ($tmpfile !== false && file_exists($tmpfile)) {
         
$dl_data['deletion_array'][] = $tmpfile;
    }

    
daily_stat("Resource download"$ref);
    
$email_add_to_log = ($email != "") ? ' Downloaded by ' $email "";
    
resource_log($refLOG_CODE_DOWNLOADED0, (string) $dl_data['usagecomment'] . $email_add_to_log"""", (int) $dl_data['usage']);

    
// Udate hit count if tracking downloads only
    
if ($GLOBALS["resource_hit_count_on_downloads"]) {
        
# greatest() is used so the value is taken from the hit_count column in the event that new_hit_count is zero to support installations that did not previously have a new_hit_count column (i.e. upgrade compatability).
        
ps_query("UPDATE resource SET new_hit_count=GREATEST(hit_count,new_hit_count)+1 WHERE ref=?", ["i"$ref]);
    }
}

This article was last updated 3rd April 2025 21:35 Europe/London time based on the source file dated 3rd April 2025 16:40 Europe/London time.