summaryrefslogtreecommitdiff
path: root/modules/contact/contact.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/contact/contact.module')
-rw-r--r--modules/contact/contact.module14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index 6a2cc1860..b575b7259 100644
--- a/modules/contact/contact.module
+++ b/modules/contact/contact.module
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_help().
+ * Implement hook_help().
*/
function contact_help($path, $arg) {
switch ($path) {
@@ -33,7 +33,7 @@ function contact_help($path, $arg) {
}
/**
- * Implementation of hook_perm().
+ * Implement hook_perm().
*/
function contact_perm() {
return array(
@@ -49,7 +49,7 @@ function contact_perm() {
}
/**
- * Implementation of hook_menu().
+ * Implement hook_menu().
*/
function contact_menu() {
$items['admin/build/contact'] = array(
@@ -137,7 +137,7 @@ function contact_load($cid) {
}
/**
- * Implementation of hook_user_form().
+ * Implement hook_user_form().
*/
function contact_user_form(&$edit, &$user, $category = NULL) {
if ($category == 'account') {
@@ -156,21 +156,21 @@ function contact_user_form(&$edit, &$user, $category = NULL) {
}
/**
- * Implementation of hook_user_insert().
+ * Implement hook_user_insert().
*/
function contact_user_insert(&$edit, &$user, $category = NULL) {
$edit['contact'] = variable_get('contact_default_status', 1);
}
/**
- * Implementation of hook_user_validate().
+ * Implement hook_user_validate().
*/
function contact_user_validate(&$edit, &$user, $category = NULL) {
return array('contact' => isset($edit['contact']) ? $edit['contact'] : FALSE);
}
/**
- * Implementation of hook_mail().
+ * Implement hook_mail().
*/
function contact_mail($key, &$message, $params) {
$language = $message['language'];