Upgrader: After [37409] move the hook docs for `upgrader_process_complete` to `WP_Upgrader::run()`.
Add changelog entry for [23912]. Part 7/8. See #36618. git-svn-id: https://develop.svn.wordpress.org/trunk@37412 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f76181d7af
commit
0f47b70106
|
@ -293,22 +293,7 @@ class Plugin_Upgrader extends WP_Upgrader {
|
||||||
|
|
||||||
$this->maintenance_mode(false);
|
$this->maintenance_mode(false);
|
||||||
|
|
||||||
/**
|
/** This action is documented in wp-admin/includes/class-wp-upgrader.php */
|
||||||
* Fires when the bulk upgrader process is complete.
|
|
||||||
*
|
|
||||||
* @since 3.6.0
|
|
||||||
*
|
|
||||||
* @param Plugin_Upgrader $this Plugin_Upgrader instance. In other contexts, $this, might
|
|
||||||
* be a Theme_Upgrader or Core_Upgrade instance.
|
|
||||||
* @param array $data {
|
|
||||||
* Array of bulk item update data.
|
|
||||||
*
|
|
||||||
* @type string $action Type of action. Default 'update'.
|
|
||||||
* @type string $type Type of update process. Accepts 'plugin', 'theme', or 'core'.
|
|
||||||
* @type bool $bulk Whether the update process is a bulk update. Default true.
|
|
||||||
* @type array $packages Array of plugin, theme, or core packages to update.
|
|
||||||
* }
|
|
||||||
*/
|
|
||||||
do_action( 'upgrader_process_complete', $this, array(
|
do_action( 'upgrader_process_complete', $this, array(
|
||||||
'action' => 'update',
|
'action' => 'update',
|
||||||
'type' => 'plugin',
|
'type' => 'plugin',
|
||||||
|
|
|
@ -743,7 +743,23 @@ class WP_Upgrader {
|
||||||
|
|
||||||
if ( ! $options['is_multi'] ) {
|
if ( ! $options['is_multi'] ) {
|
||||||
|
|
||||||
/** This action is documented in wp-admin/includes/class-wp-upgrader.php */
|
/**
|
||||||
|
* Fires when the upgrader process is complete.
|
||||||
|
*
|
||||||
|
* @since 3.6.0
|
||||||
|
* @since 3.7.0 Added to WP_Upgrader::run().
|
||||||
|
*
|
||||||
|
* @param WP_Upgrader $this WP_Upgrader instance. In other contexts, $this, might be a
|
||||||
|
* Theme_Upgrader, Plugin_Upgrader or Core_Upgrade instance.
|
||||||
|
* @param array $data {
|
||||||
|
* Array of bulk item update data.
|
||||||
|
*
|
||||||
|
* @type string $action Type of action. Default 'update'.
|
||||||
|
* @type string $type Type of update process. Accepts 'plugin', 'theme', or 'core'.
|
||||||
|
* @type bool $bulk Whether the update process is a bulk update. Default true.
|
||||||
|
* @type array $packages Array of plugin, theme, or core packages to update.
|
||||||
|
* }
|
||||||
|
*/
|
||||||
do_action( 'upgrader_process_complete', $this, $options['hook_extra'] );
|
do_action( 'upgrader_process_complete', $this, $options['hook_extra'] );
|
||||||
$this->skin->footer();
|
$this->skin->footer();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue