createZipFile
To create a zip archive including all files of a given file array
With this function, you create a zip archive containing all files passed in an array.
At the moment the function works only if it is executed server-side. More about execution context.
Syntax
createZipFile(nid, [file], string)
Return
file
Example
createZipFile(record, files, filename)
creates a zip archive with all files of the array files
and a given name.
Result: The Products.zip zip archive containing all product photos from the Products table is saved in the File image field.
See also
createTextFile
, which creates a text file with a given name and content.
Last updated