v1/vendor/chi-teck/drupal-code-generator/templates/hook/modules_uninstalled.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);
}
}