deleted_plugin хук-событие . WP 4.4.0
Fires immediately after a plugin deletion attempt.
Использование
add_action( 'deleted_plugin', 'action_function_name_7429', 10, 2 ); function action_function_name_7429( $plugin_file, $deleted ){ // action... }
- $plugin_file(строка)
- Path to the plugin file relative to the plugins directory.
- $deleted(true/false)
- Whether the plugin deletion was successful.
Список изменений
С версии 4.4.0 | Введена. |
Где вызывается хук
deleted_plugin
wp-admin/includes/plugin.php 997
do_action( 'deleted_plugin', $plugin_file, $deleted );