hook_module_preuninstall($module)
Perform necessary actions before a module is uninstalled.
Parameters
string $module: The name of the module about to be uninstalled.
Related topics
- Hooks
- Define functions that alter the behavior of Drupal core.
File
- core/lib/Drupal/Core/Extension/module.api.php, line 243
- Hooks related to module and update systems.
Code
1 2 3 | function hook_module_preuninstall( $module ) { mymodule_cache_clear(); } |
Please login to continue.