forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
13 lines
361 B
Twig
13 lines
361 B
Twig
/**
|
|
* Implements hook_modules_uninstalled().
|
|
*/
|
|
function {{ machine_name }}_modules_uninstalled($modules, $is_syncing) {
|
|
if (in_array('lousy_module', $modules)) {
|
|
\Drupal::state()->delete('mymodule.lousy_module_compatibility');
|
|
}
|
|
mymodule_cache_rebuild();
|
|
if (!$is_syncing) {
|
|
\Drupal::service('mymodule.service')->doSomething($modules);
|
|
}
|
|
}
|