diff options
Diffstat (limited to 'modules/openid')
-rw-r--r-- | modules/openid/openid.install | 6 | ||||
-rw-r--r-- | modules/openid/openid.module | 12 | ||||
-rw-r--r-- | modules/openid/tests/openid_test.install | 2 | ||||
-rw-r--r-- | modules/openid/tests/openid_test.module | 2 |
4 files changed, 11 insertions, 11 deletions
diff --git a/modules/openid/openid.install b/modules/openid/openid.install index 5e0f9d9bb..054b3b017 100644 --- a/modules/openid/openid.install +++ b/modules/openid/openid.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_install(). + * Implement hook_install(). */ function openid_install() { // Create table. @@ -15,7 +15,7 @@ function openid_install() { } /** - * Implementation of hook_uninstall(). + * Implement hook_uninstall(). */ function openid_uninstall() { // Remove table. @@ -23,7 +23,7 @@ function openid_uninstall() { } /** - * Implementation of hook_schema(). + * Implement hook_schema(). */ function openid_schema() { $schema['openid_association'] = array( diff --git a/modules/openid/openid.module b/modules/openid/openid.module index 3e6090493..03053333f 100644 --- a/modules/openid/openid.module +++ b/modules/openid/openid.module @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_menu(). + * Implement hook_menu(). */ function openid_menu() { $items['openid/authenticate'] = array( @@ -36,7 +36,7 @@ function openid_menu() { } /** - * Implementation of hook_help(). + * Implement hook_help(). */ function openid_help($path, $arg) { switch ($path) { @@ -57,7 +57,7 @@ function openid_help($path, $arg) { } /** - * Implementation of hook_user_insert(). + * Implement hook_user_insert(). */ function openid_user_insert(&$edit, &$account, $category = NULL) { if (isset($_SESSION['openid']['values'])) { @@ -70,14 +70,14 @@ function openid_user_insert(&$edit, &$account, $category = NULL) { } /** - * Implementation of hook_form_FORM_ID_alter(). + * Implement hook_form_FORM_ID_alter(). */ function openid_form_user_login_block_alter(&$form, &$form_state) { _openid_user_login_form_alter($form, $form_state); } /** - * Implementation of hook_form_FORM_ID_alter(). + * Implement hook_form_FORM_ID_alter(). */ function openid_form_user_login_alter(&$form, &$form_state) { _openid_user_login_form_alter($form, $form_state); @@ -122,7 +122,7 @@ function _openid_user_login_form_alter(&$form, &$form_state) { } /** - * Implementation of hook_form_alter(). Adds OpenID login to the login forms. + * Implement hook_form_alter(). Adds OpenID login to the login forms. */ function openid_form_user_register_alter(&$form, &$form_state) { if (isset($_SESSION['openid']['values'])) { diff --git a/modules/openid/tests/openid_test.install b/modules/openid/tests/openid_test.install index 6f6e319b9..ac826fd47 100644 --- a/modules/openid/tests/openid_test.install +++ b/modules/openid/tests/openid_test.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_install(). + * Implement 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 baaf07ce4..c84b10284 100644 --- a/modules/openid/tests/openid_test.module +++ b/modules/openid/tests/openid_test.module @@ -22,7 +22,7 @@ */ /** - * Implementation of hook_menu(). + * Implement hook_menu(). */ function openid_test_menu() { $items['openid-test/yadis/xrds'] = array( |