upgrader_package_options

Advertisement

Summery Summery

Filters the package options before running an update.

Syntax Syntax

apply_filters( 'upgrader_package_options', array $options )

Description Description

See also ‘upgrader_process_complete’.

Parameters Parameters

$options

Options used by the upgrader.

  • 'package'
    (string) Package for update.
  • 'destination'
    (string) Update location.
  • 'clear_destination'
    (bool) Clear the destination resource.
  • 'clear_working'
    (bool) Clear the working resource.
  • 'abort_if_destination_exists'
    (bool) Abort if the Destination directory exists.
  • 'is_multi'
    (bool) Whether the upgrader is running multiple times.
  • 'hook_extra'
    (array) Extra hook arguments.
    • 'action'
      (string) Type of action. Default 'update'.
    • 'type'
      (string) Type of update process. Accepts 'plugin', 'theme', or 'core'.
    • 'bulk'
      (bool) Whether the update process is a bulk update. Default true.
    • 'plugin'
      (string) Path to the plugin file relative to the plugins directory.
    • 'theme'
      (string) The stylesheet or template name of the theme.
    • 'language_update_type'
      (string) The language pack update type. Accepts 'plugin', 'theme', or 'core'.
    • 'language_update'
      (object) The language pack update offer.

Source Source

File: wp-admin/includes/class-wp-upgrader.php

Advertisement

Changelog Changelog

Changelog
Version Description
4.3.0 Introduced.

Advertisement

Leave a Reply