function hook_modules_disabled
Perform necessary actions after modules are disabled.
This function differs from hook_disable() in that it gives all other modules a chance to perform actions when modules are disabled, whereas hook_disable() is only called on the module actually being disabled.
Parameters
$modules: An array of the modules that were disabled.
See also
Related topics
5 functions implement hook_modules_disabled()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- field_modules_disabled in modules/
field/ field.module - Implements hook_modules_disabled().
- filter_modules_disabled in modules/
filter/ filter.module - Implements hook_modules_disabled().
- locale_modules_disabled in modules/
locale/ locale.module - Implements hook_modules_disabled().
- module_test_modules_disabled in modules/
simpletest/ tests/ module_test.module - Implements hook_modules_disabled().
- system_test_modules_disabled in modules/
simpletest/ tests/ system_test.module - Implements hook_modules_disabled().
1 invocation of hook_modules_disabled()
- module_disable in includes/
module.inc - Disables a given set of modules.
File
-
modules/
system/ system.api.php, line 2716
Code
function hook_modules_disabled($modules) {
if (in_array('lousy_module', $modules)) {
mymodule_enable_functionality();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.