delete_plugin
Fires immediately before a plugin deletion attempt.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'delete_plugin')
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'delete_plugin', $array );
- The following example is for adding a hook callback.
- // define the delete_plugin callback
- function action_delete_plugin( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'delete_plugin', 'action_delete_plugin', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'delete_plugin', 'action_delete_plugin', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module-plugins.php
- add_action( 'delete_plugin', array( $this, 'delete_plugin') );