deleted_plugin action-hookWP 4.4.0

Fires immediately after a plugin deletion attempt.

Usage

add_action( 'deleted_plugin', 'wp_kama_deleted_plugin_action', 10, 2 );

/**
 * Function for `deleted_plugin` action-hook.
 * 
 * @param string $plugin_file Path to the plugin file relative to the plugins directory.
 * @param bool   $deleted     Whether the plugin deletion was successful.
 *
 * @return void
 */
function wp_kama_deleted_plugin_action( $plugin_file, $deleted ){

	// action...
}
$plugin_file(string)
Path to the plugin file relative to the plugins directory.
$deleted(true|false)
Whether the plugin deletion was successful.

Changelog

Since 4.4.0 Introduced.

Where the hook is called

delete_plugins()
deleted_plugin
wp-admin/includes/plugin.php 992
do_action( 'deleted_plugin', $plugin_file, $deleted );

Where the hook is used in WordPress

Usage not found.