summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/system/system.api.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index cff51c4ff..c760462fb 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -3325,7 +3325,8 @@ function hook_uninstall() {
/**
* Perform necessary actions after module is enabled.
*
- * The hook is called every time the module is enabled.
+ * The hook is called every time the module is enabled. It should be
+ * implemented in the module's .install file.
*
* @see module_enable()
* @see hook_install()
@@ -3338,7 +3339,8 @@ function hook_enable() {
/**
* Perform necessary actions before module is disabled.
*
- * The hook is called every time the module is disabled.
+ * The hook is called every time the module is disabled. It should be
+ * implemented in the module's .install file.
*
* @see hook_uninstall()
* @see hook_modules_disabled()