summaryrefslogtreecommitdiff
path: root/modules/openid
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/openid
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/openid')
-rw-r--r--modules/openid/openid.install4
-rw-r--r--modules/openid/openid.module12
-rw-r--r--modules/openid/tests/openid_test.install2
-rw-r--r--modules/openid/tests/openid_test.module2
4 files changed, 10 insertions, 10 deletions
diff --git a/modules/openid/openid.install b/modules/openid/openid.install
index 62955ad2b..f9d1671aa 100644
--- a/modules/openid/openid.install
+++ b/modules/openid/openid.install
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_schema().
+ * Implements hook_schema().
*/
function openid_schema() {
$schema['openid_association'] = array(
@@ -59,7 +59,7 @@ function openid_schema() {
}
/**
- * Implement hook_requirements().
+ * Implements hook_requirements().
*/
function openid_requirements($phase) {
$requirements = array();
diff --git a/modules/openid/openid.module b/modules/openid/openid.module
index f8141912c..acf9b996a 100644
--- a/modules/openid/openid.module
+++ b/modules/openid/openid.module
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_menu().
+ * Implements hook_menu().
*/
function openid_menu() {
$items['openid/authenticate'] = array(
@@ -39,7 +39,7 @@ function openid_menu() {
}
/**
- * Implement hook_help().
+ * Implements hook_help().
*/
function openid_help($path, $arg) {
switch ($path) {
@@ -62,7 +62,7 @@ function openid_help($path, $arg) {
}
/**
- * Implement hook_user_insert().
+ * Implements hook_user_insert().
*/
function openid_user_insert(&$edit, $account, $category) {
if (isset($_SESSION['openid']['values'])) {
@@ -76,14 +76,14 @@ function openid_user_insert(&$edit, $account, $category) {
}
/**
- * Implement hook_form_FORM_ID_alter().
+ * Implements hook_form_FORM_ID_alter().
*/
function openid_form_user_login_block_alter(&$form, &$form_state) {
_openid_user_login_form_alter($form, $form_state);
}
/**
- * Implement hook_form_FORM_ID_alter().
+ * Implements hook_form_FORM_ID_alter().
*/
function openid_form_user_login_alter(&$form, &$form_state) {
_openid_user_login_form_alter($form, $form_state);
@@ -128,7 +128,7 @@ function _openid_user_login_form_alter(&$form, &$form_state) {
}
/**
- * Implement hook_form_alter().
+ * Implements hook_form_alter().
*
* Adds OpenID login to the login forms.
*/
diff --git a/modules/openid/tests/openid_test.install b/modules/openid/tests/openid_test.install
index ac826fd47..f59c3c701 100644
--- a/modules/openid/tests/openid_test.install
+++ b/modules/openid/tests/openid_test.install
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_install().
+ * Implements hook_install().
*/
function openid_test_install() {
module_load_include('inc', 'openid');
diff --git a/modules/openid/tests/openid_test.module b/modules/openid/tests/openid_test.module
index 365ddf9b3..4bf839d58 100644
--- a/modules/openid/tests/openid_test.module
+++ b/modules/openid/tests/openid_test.module
@@ -22,7 +22,7 @@
*/
/**
- * Implement hook_menu().
+ * Implements hook_menu().
*/
function openid_test_menu() {
$items['openid-test/yadis/xrds'] = array(