summaryrefslogtreecommitdiff
path: root/modules/menu
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2013-01-19 07:59:01 -0800
committerJennifer Hodgdon <yahgrp@poplarware.com>2013-01-19 07:59:01 -0800
commit9426490d7eeec8c6253078613d035b37e950e011 (patch)
treec92792c97c1f13413a1973caeb0b724dd66cb0f9 /modules/menu
parentca55fc249ca2edba301ba426579376c94f4258f4 (diff)
downloadbrdo-9426490d7eeec8c6253078613d035b37e950e011.tar.gz
brdo-9426490d7eeec8c6253078613d035b37e950e011.tar.bz2
Issue #1875858 by j.slemmer, cck: Fix documentation for a couple of menu hooks
Diffstat (limited to 'modules/menu')
-rw-r--r--modules/menu/menu.api.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/menu/menu.api.php b/modules/menu/menu.api.php
index 3f3818e17..22d93ef3e 100644
--- a/modules/menu/menu.api.php
+++ b/modules/menu/menu.api.php
@@ -11,7 +11,7 @@
*/
/**
- * Informs modules that a custom menu was created.
+ * Respond to a custom menu creation.
*
* This hook is used to notify modules that a custom menu has been created.
* Contributed modules may use the information to perform actions based on the
@@ -34,7 +34,7 @@ function hook_menu_insert($menu) {
}
/**
- * Informs modules that a custom menu was updated.
+ * Respond to a custom menu update.
*
* This hook is used to notify modules that a custom menu has been updated.
* Contributed modules may use the information to perform actions based on the
@@ -59,14 +59,14 @@ function hook_menu_update($menu) {
}
/**
- * Informs modules that a custom menu was deleted.
+ * Respond to a custom menu deletion.
*
* This hook is used to notify modules that a custom menu along with all links
* contained in it (if any) has been deleted. Contributed modules may use the
* information to perform actions based on the information entered into the menu
* system.
*
- * @param $link
+ * @param $menu
* An array representing a custom menu:
* - menu_name: The unique name of the custom menu.
* - title: The human readable menu title.