diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-04-04 16:28:08 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-04-04 16:28:08 -0700 |
commit | 40c99ba94fc315fbf3dc0467eef33d6eff63bd2b (patch) | |
tree | 45cb2ea7d454953eab90df6eedd2c87a16853d37 /modules/path/path.module | |
parent | 4489759b74ac1a2cd9d0fc45982147746145219b (diff) | |
download | brdo-40c99ba94fc315fbf3dc0467eef33d6eff63bd2b.tar.gz brdo-40c99ba94fc315fbf3dc0467eef33d6eff63bd2b.tar.bz2 |
Issue #1355682 by Zgear, chertzog: API docs cleanup for Path module
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 71dd22fa7..9df498865 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -91,7 +91,9 @@ function path_menu() { } /** - * Implements hook_form_BASE_FORM_ID_alter(). + * Implements hook_form_BASE_FORM_ID_alter() for node_form(). + * + * @see path_form_element_validate() */ function path_form_node_form_alter(&$form, $form_state) { $path = array(); @@ -145,6 +147,8 @@ function path_form_node_form_alter(&$form, $form_state) { /** * Form element validation handler for URL alias form element. + * + * @see path_form_node_form_alter() */ function path_form_element_validate($element, &$form_state, $complete_form) { // Trim the submitted value. @@ -225,7 +229,7 @@ function path_node_delete($node) { } /** - * Implements hook_form_FORM_ID_alter(). + * Implements hook_form_FORM_ID_alter() for taxonomy_form_term(). */ function path_form_taxonomy_form_term_alter(&$form, $form_state) { // Make sure this does not show up on the delete confirmation form. |