diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-05-17 17:44:22 -0700 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-05-17 17:44:22 -0700 |
commit | 69c8ff264d1b1fe55077730a3612a6d71abd049c (patch) | |
tree | 0b8f34a8bf13a463fe43bb1eaffc1e2a6c236339 /modules/system/system.api.php | |
parent | 596b011f7d4fa9b5536018ab862f473a73a70637 (diff) | |
download | brdo-69c8ff264d1b1fe55077730a3612a6d71abd049c.tar.gz brdo-69c8ff264d1b1fe55077730a3612a6d71abd049c.tar.bz2 |
- Patch #1132364 by CrookedNumber, David_Rothstein: hook_modules_enabled() could be less ambiguous.
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 813d5affd..1b295b4f4 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -2367,7 +2367,7 @@ function hook_flush_caches() { * enable hooks are invoked. * * @param $modules - * An array of the installed modules. + * An array of the modules that were installed. * * @see module_enable() * @see hook_modules_enabled() @@ -2389,7 +2389,7 @@ function hook_modules_installed($modules) { * invoked. * * @param $modules - * An array of the modules being enabled. + * An array of the modules that were enabled. * * @see hook_enable() * @see hook_modules_installed() @@ -2410,7 +2410,7 @@ function hook_modules_enabled($modules) { * is only called on the module actually being disabled. * * @param $modules - * An array of the disabled modules. + * An array of the modules that were disabled. * * @see hook_disable() * @see hook_modules_uninstalled() @@ -2432,7 +2432,7 @@ function hook_modules_disabled($modules) { * data that may have been set by other modules. * * @param $modules - * An array of the uninstalled modules. + * An array of the modules that were uninstalled. * * @see hook_uninstall() * @see hook_modules_disabled() |