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

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 4844 to 4855

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 18th April 2024 20:05 Europe/London time based on the source file dated 15th April 2024 12:15 Europe/London time.