upgrader_process_complete
This action is documented in wp-admin/includes/class-wp-upgrader.php.
Description
Parameters (2)
- 0. $array (callback) =>
array( &$this, 'reset_check_head_count' )
- The array.
- 1. $int (int) =>
10
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'upgrader_process_complete', $array, $int );
- The following example is for adding a hook callback.
- // define the upgrader_process_complete callback
- function action_upgrader_process_complete( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'upgrader_process_complete', 'action_upgrader_process_complete', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'upgrader_process_complete', 'action_upgrader_process_complete', 10, 2 );
Defined (2)
The action is defined in the following location(s).
- /lib/admin.php
- add_action( 'upgrader_process_complete', array( &$this, 'reset_check_head_count' ), 10 );
- add_action( 'upgrader_process_complete', array( &$this, 'check_tmpl_head_attributes' ), 20 );