forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
12 lines
332 B
Twig
12 lines
332 B
Twig
/**
|
|
* Implements hook_modules_installed().
|
|
*/
|
|
function {{ machine_name }}_modules_installed($modules, $is_syncing) {
|
|
if (in_array('lousy_module', $modules)) {
|
|
\Drupal::state()->set('mymodule.lousy_module_compatibility', TRUE);
|
|
}
|
|
if (!$is_syncing) {
|
|
\Drupal::service('mymodule.service')->doSomething($modules);
|
|
}
|
|
}
|