wpseek.com
A WordPress-centric search engine for devs and theme authors



pre_unzip_file › WordPress Filter Hooks

Since6.4.0
Deprecatedn/a
apply_filters( 'pre_unzip_file', null, $file, $to, $needed_dirs, $required_space )
Parameters: (5)
  • (null|true|WP_Error) $result The result of the override. True on success, otherwise WP Error. Default null.
    Required: Yes
  • (string) $file Full path and filename of ZIP archive.
    Required: Yes
  • (string) $to Full path on the filesystem to extract archive to.
    Required: Yes
  • (string[]) $needed_dirs A full list of required folders that need to be created.
    Required: Yes
  • (float) $required_space The space required to unzip the file and copy its contents, with a 10% buffer.
    Required: Yes
Defined at:
Codex:

Filters archive unzipping to override with a custom process.





Source

$pre = apply_filters( 'pre_unzip_file', null, $file, $to, $needed_dirs, $required_space );