jetpack_pre_plugin_upgrade_translations
Pre-upgrade action.
Description
do_action( 'jetpack_pre_plugin_upgrade_translations', (array) $plugin, (array) $this_plugins, (bool) $update_attempted );
Parameters (3)
- 0. $plugin (array)
- The plugin.
- 1. $this_plugins (array)
- Array of plugin objects
- 2. $update_attempted (bool)
- False for the first update, true subsequently
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_pre_plugin_upgrade_translations', $plugin, $this_plugins, $update_attempted );
- The following example is for adding a hook callback.
- // define the jetpack_pre_plugin_upgrade_translations callback
- function action_jetpack_pre_plugin_upgrade_translations( $plugin, $this_plugins, $update_attempted ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'jetpack_pre_plugin_upgrade_translations', 'action_jetpack_pre_plugin_upgrade_translations', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'jetpack_pre_plugin_upgrade_translations', 'action_jetpack_pre_plugin_upgrade_translations', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php
- do_action( 'jetpack_pre_plugin_upgrade_translations', $plugin, $this->plugins, $update_attempted );