summaryrefslogtreecommitdiff
path: root/modules/contact
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
commit0f4060f377a6ccea57a183b3c3e4801c450f5476 (patch)
tree07a7bd87373613f3e884c8f56bfb9911eda38511 /modules/contact
parent5bdcc4ada232bf92e3d529962d9f7aa2536605cc (diff)
downloadbrdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.gz
brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.bz2
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.install6
-rw-r--r--modules/contact/contact.module14
2 files changed, 10 insertions, 10 deletions
diff --git a/modules/contact/contact.install b/modules/contact/contact.install
index dc0d210cc..929cc54fa 100644
--- a/modules/contact/contact.install
+++ b/modules/contact/contact.install
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_install().
+ * Implement hook_install().
*/
function contact_install() {
// Create tables.
@@ -15,7 +15,7 @@ function contact_install() {
}
/**
- * Implementation of hook_uninstall().
+ * Implement hook_uninstall().
*/
function contact_uninstall() {
// Remove tables.
@@ -27,7 +27,7 @@ function contact_uninstall() {
}
/**
- * Implementation of hook_schema().
+ * Implement hook_schema().
*/
function contact_schema() {
$schema['contact'] = array(
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'];