function system_test_modules_enabled

Implements hook_modules_enabled().

File

drupal/core/modules/system/tests/modules/system_test/system_test.module, line 101

Code

function system_test_modules_enabled($modules) {
  if (Drupal::state()
    ->get('system_test.verbose_module_hooks')) {
    foreach ($modules as $module) {
      drupal_set_message(t('hook_modules_enabled fired for @module', array(
        '@module' => $module,
      )));
    }
  }
}