Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / modules_installed.twig
1 /**
2  * Implements hook_modules_installed().
3  */
4 function {{ machine_name }}_modules_installed($modules) {
5   if (in_array('lousy_module', $modules)) {
6     \Drupal::state()->set('mymodule.lousy_module_compatibility', TRUE);
7   }
8 }