update_zip_progress_file()

Description

Adds a progress indicator to the zip progress file, so we can show the zip progress to the user.

Parameters

ColumnTypeDefaultDescription
$note string The note to display

Return

void

Location

include/collections_functions.php lines 4532 to 4542

Definition

 
function update_zip_progress_file($note)
{
    global 
$progress_file$offline_job_in_progress;
    if (
$offline_job_in_progress) {
        return 
false;
    }
    
$fp fopen($progress_file'w');
    
$filedata $note;
    
fwrite($fp$filedata);
    
fclose($fp);
}

This article was last updated 25th March 2025 10:35 Europe/London time based on the source file dated 11th March 2025 11:35 Europe/London time.