summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
commit1da26fadfe9cdcbd89a912b9f61c710adff4c6c8 (patch)
treed77a0c5420a53c65d24b8ac1842b7f1e356c39d3 /modules/path
parent8523aca33e828c638f2373e5be4e80ed30866a58 (diff)
downloadbrdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.gz
brdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.bz2
- Patch #502190 by jhodgdon, stella, sun: hook implementation headers out of compliance with standards.
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.module22
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/path/path.module b/modules/path/path.module
index 031526564..294a07730 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_help().
+ * Implements hook_help().
*/
function path_help($path, $arg) {
switch ($path) {
@@ -36,7 +36,7 @@ function path_help($path, $arg) {
}
/**
- * Implement hook_permission().
+ * Implements hook_permission().
*/
function path_permission() {
return array(
@@ -50,7 +50,7 @@ function path_permission() {
}
/**
- * Implement hook_menu().
+ * Implements hook_menu().
*/
function path_menu() {
$items['admin/config/search/path'] = array(
@@ -93,7 +93,7 @@ function path_menu() {
}
/**
- * Implement hook_form_alter().
+ * Implements hook_form_alter().
*/
function path_form_alter(&$form, $form_state, $form_id) {
if (!empty($form['#node_edit_form'])) {
@@ -180,7 +180,7 @@ function path_form_element_validate($element, &$form_state, $complete_form) {
}
/**
- * Implement hook_node_insert().
+ * Implements hook_node_insert().
*/
function path_node_insert($node) {
if (isset($node->path)) {
@@ -197,7 +197,7 @@ function path_node_insert($node) {
}
/**
- * Implement hook_node_update().
+ * Implements hook_node_update().
*/
function path_node_update($node) {
if (isset($node->path)) {
@@ -218,7 +218,7 @@ function path_node_update($node) {
}
/**
- * Implement hook_node_delete().
+ * Implements hook_node_delete().
*/
function path_node_delete($node) {
// Delete all aliases associated with this node.
@@ -226,7 +226,7 @@ function path_node_delete($node) {
}
/**
- * Implement hook_form_FORM_ID_alter().
+ * Implements hook_form_FORM_ID_alter().
*/
function path_form_taxonomy_form_term_alter(&$form, $form_state) {
// Make sure this does not show up on the delete confirmation form.
@@ -261,7 +261,7 @@ function path_form_taxonomy_form_term_alter(&$form, $form_state) {
}
/**
- * Implement hook_taxonomy_term_insert().
+ * Implements hook_taxonomy_term_insert().
*/
function path_taxonomy_term_insert($term) {
if (isset($term->path)) {
@@ -278,7 +278,7 @@ function path_taxonomy_term_insert($term) {
}
/**
- * Implement hook_taxonomy_term_update().
+ * Implements hook_taxonomy_term_update().
*/
function path_taxonomy_term_update($term) {
if (isset($term->path)) {
@@ -299,7 +299,7 @@ function path_taxonomy_term_update($term) {
}
/**
- * Implement hook_taxonomy_term_delete().
+ * Implements hook_taxonomy_term_delete().
*/
function path_taxonomy_term_delete($term) {
// Delete all aliases associated with this term.