function module_test_modules_enabled

Implements hook_modules_enabled().

File

drupal/core/modules/system/tests/modules/module_test/module_test.module, line 155

Code

function module_test_modules_enabled($modules) {

  // Record the ordered list of modules that were passed in to this hook so we
  // can check that the modules were enabled in the correct sequence.
  state()
    ->set('system_test.module_enable_order', $modules);
}