function hook_disable

Perform necessary actions before module is disabled.

The hook is called every time the module is disabled. It should be implemented in the module's .install file. The implementation can rely on the .module file being loaded.

See also

hook_uninstall()

hook_modules_disabled()

Related topics

10 functions implement hook_disable()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

dashboard_disable in drupal/modules/dashboard/dashboard.install
Implements hook_disable().
filter_admin_disable in drupal/modules/filter/filter.admin.inc
Form constructor for the text format deletion confirmation form.
filter_format_disable in drupal/modules/filter/filter.module
Disables a text format.
filter_test_filter_format_disable in drupal/modules/simpletest/tests/filter_test.module
Implements hook_filter_format_disable().
language_types_disable in drupal/includes/language.inc
Disables the given language types.

... See full list

1 invocation of hook_disable()
module_disable in drupal/includes/module.inc
Disables a given set of modules.

File

drupal/modules/system/system.api.php, line 3670
Hooks provided by Drupal core and the System module.

Code

function hook_disable() {
  mymodule_cache_rebuild();
}