function system_test_modules_enabled
Implements hook_modules_enabled().
File
-
modules/
simpletest/ tests/ system_test.module, line 285
Code
function system_test_modules_enabled($modules) {
if (variable_get('test_verbose_module_hooks')) {
foreach ($modules as $module) {
drupal_set_message(t('hook_modules_enabled fired for @module', array(
'@module' => $module,
)));
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.