summaryrefslogtreecommitdiff
path: root/modules/contact
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/contact
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/contact')
-rw-r--r--modules/contact/contact.install6
-rw-r--r--modules/contact/contact.module12
2 files changed, 9 insertions, 9 deletions
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.
*/