Same name and namespace in other branches
  1. 5.x developer/hooks/install.php \hook_enable()
  2. 6.x developer/hooks/install.php \hook_enable()

Perform necessary actions after module is enabled.

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

See also

module_enable()

hook_install()

hook_modules_enabled()

Related topics

11 functions implement hook_enable()

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

comment_enable in modules/comment/comment.install
Implements hook_enable().
dashboard_enable in modules/dashboard/dashboard.install
Implements hook_enable().
forum_enable in modules/forum/forum.install
Implements hook_enable().
menu_enable in modules/menu/menu.module
Implements hook_enable().
module_enable in includes/module.inc
Enables or installs a given list of modules.

... See full list

1 invocation of hook_enable()
module_enable in includes/module.inc
Enables or installs a given list of modules.

File

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

Code

function hook_enable() {
  mymodule_cache_rebuild();
}