From 1da26fadfe9cdcbd89a912b9f61c710adff4c6c8 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 4 Dec 2009 16:49:48 +0000 Subject: - Patch #502190 by jhodgdon, stella, sun: hook implementation headers out of compliance with standards. --- modules/contact/contact.install | 6 +++--- modules/contact/contact.module | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'modules/contact') diff --git a/modules/contact/contact.install b/modules/contact/contact.install index 42f15272d..1246fd677 100644 --- a/modules/contact/contact.install +++ b/modules/contact/contact.install @@ -7,7 +7,7 @@ */ /** - * Implement hook_schema(). + * Implements hook_schema(). */ function contact_schema() { $schema['contact'] = array( @@ -67,7 +67,7 @@ function contact_schema() { } /** - * Implement hook_install(). + * Implements hook_install(). */ function contact_install() { // Insert a default contact category. @@ -82,7 +82,7 @@ function contact_install() { } /** - * Implement hook_uninstall(). + * Implements hook_uninstall(). */ function contact_uninstall() { variable_del('contact_default_status'); diff --git a/modules/contact/contact.module b/modules/contact/contact.module index 9f0e3ca16..76af943ac 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -7,7 +7,7 @@ */ /** - * Implement hook_help(). + * Implements hook_help(). */ function contact_help($path, $arg) { switch ($path) { @@ -38,7 +38,7 @@ function contact_help($path, $arg) { } /** - * Implement hook_permission(). + * Implements hook_permission(). */ function contact_permission() { return array( @@ -55,7 +55,7 @@ function contact_permission() { } /** - * Implement hook_menu(). + * Implements hook_menu(). */ function contact_menu() { $items['admin/structure/contact'] = array( @@ -160,14 +160,14 @@ function contact_load($cid) { } /** - * Implement hook_user_insert(). + * Implements hook_user_insert(). */ function contact_user_insert(&$edit, $account, $category) { $edit['contact'] = variable_get('contact_default_status', 1); } /** - * Implement hook_mail(). + * Implements hook_mail(). */ function contact_mail($key, &$message, $params) { $language = $message['language']; @@ -210,7 +210,7 @@ function contact_mail($key, &$message, $params) { } /** - * Implement hook_form_FORM_ID_alter(). + * Implements hook_form_FORM_ID_alter(). * * Add the enable personal contact form to an individual user's account page. */ -- cgit v1.2.3