diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-04 16:49:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-04 16:49:48 +0000 |
commit | 1da26fadfe9cdcbd89a912b9f61c710adff4c6c8 (patch) | |
tree | d77a0c5420a53c65d24b8ac1842b7f1e356c39d3 /modules/simpletest/tests/taxonomy_test.module | |
parent | 8523aca33e828c638f2373e5be4e80ed30866a58 (diff) | |
download | drupal-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.gz drupal-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.zip |
- Patch #502190 by jhodgdon, stella, sun: hook implementation headers out of compliance with standards.
Diffstat (limited to 'modules/simpletest/tests/taxonomy_test.module')
-rw-r--r-- | modules/simpletest/tests/taxonomy_test.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/simpletest/tests/taxonomy_test.module b/modules/simpletest/tests/taxonomy_test.module index fd34f9cafb6..d524fb87c8d 100644 --- a/modules/simpletest/tests/taxonomy_test.module +++ b/modules/simpletest/tests/taxonomy_test.module @@ -7,7 +7,7 @@ */ /** - * Implement hook_taxonomy_term_load(). + * Implements hook_taxonomy_term_load(). */ function taxonomy_test_taxonomy_term_load($terms) { foreach ($terms as $term) { @@ -19,7 +19,7 @@ function taxonomy_test_taxonomy_term_load($terms) { } /** - * Implement hook_taxonomy_term_insert(). + * Implements hook_taxonomy_term_insert(). */ function taxonomy_test_taxonomy_term_insert($term) { if (!empty($term->antonym)) { @@ -33,7 +33,7 @@ function taxonomy_test_taxonomy_term_insert($term) { } /** - * Implement hook_taxonomy_term_update(). + * Implements hook_taxonomy_term_update(). */ function taxonomy_test_taxonomy_term_update($term) { if (!empty($term->antonym)) { @@ -47,7 +47,7 @@ function taxonomy_test_taxonomy_term_update($term) { } /** - * Implement hook_taxonomy_term_delete(). + * Implements hook_taxonomy_term_delete(). */ function taxonomy_test_taxonomy_term_delete($term) { db_delete('taxonomy_term_antonym') @@ -56,7 +56,7 @@ function taxonomy_test_taxonomy_term_delete($term) { } /** - * Implement hook_form_alter(). + * Implements hook_form_alter(). */ function taxonomy_test_form_alter(&$form, $form_state, $form_id) { if ($form_id == 'taxonomy_form_term') { |