diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-05 04:36:39 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-05 04:36:39 +0000 |
commit | 4ce72ad5a4524a354c5bda90a13651676d14dd6b (patch) | |
tree | 22c038d1db3f0c0a234a1013875b559de3774c2e | |
parent | 400fa96fc6e61c7ada26827e49453bd7a1fb0189 (diff) | |
download | brdo-4ce72ad5a4524a354c5bda90a13651676d14dd6b.tar.gz brdo-4ce72ad5a4524a354c5bda90a13651676d14dd6b.tar.bz2 |
#457450 follow-up by agentrickard: Documentation fixes.
-rw-r--r-- | modules/menu/menu.api.php | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/modules/menu/menu.api.php b/modules/menu/menu.api.php index 223fc2df0..80cd58df4 100644 --- a/modules/menu/menu.api.php +++ b/modules/menu/menu.api.php @@ -294,14 +294,12 @@ function hook_translated_menu_link_alter(&$item, $map) { /** * Inform modules that a menu link has been created. * - * This hook is used to notify module that menu items have been + * This hook is used to notify modules that menu items have been * created. Contributed modules may use the information to perform * actions based on the information entered into the menu system. * * @param $link - * The $link record saved into the {menu_links} table. - * @return - * None. + * Associative array defining a menu link as passed into menu_link_save(). * * @see hook_menu_link_update() * @see hook_menu_link_delete() @@ -318,14 +316,12 @@ function hook_menu_link_insert($link) { /** * Inform modules that a menu link has been updated. * - * This hook is used to notify module that menu items have been + * This hook is used to notify modules that menu items have been * updated. Contributed modules may use the information to perform * actions based on the information entered into the menu system. * * @param $link - * The $link record saved into the {menu_links} table. - * @return - * None. + * Associative array defining a menu link as passed into menu_link_save(). * * @see hook_menu_link_insert() * @see hook_menu_link_delete() @@ -344,14 +340,12 @@ function hook_menu_link_update($link) { /** * Inform modules that a menu link has been deleted. * - * This hook is used to notify module that menu items have been + * This hook is used to notify modules that menu items have been * deleted. Contributed modules may use the information to perform * actions based on the information entered into the menu system. * * @param $link - * The $link record saved into the {menu_links} table. - * @return - * None. + * Associative array defining a menu link as passed into menu_link_save(). * * @see hook_menu_link_insert() * @see hook_menu_link_update() |