summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-09-12 11:32:06 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-09-12 11:32:06 +0000
commit2b8943667c646fcdd3c6b7472b453ce9aace73d2 (patch)
tree0483ba5807c0998d65f16a556a55e109f6101e9b /modules/openid
parent865cfbb6f158eb191c684f6b1c6771812330155c (diff)
downloadbrdo-2b8943667c646fcdd3c6b7472b453ce9aace73d2.tar.gz
brdo-2b8943667c646fcdd3c6b7472b453ce9aace73d2.tar.bz2
#172591 by HedgeMage: add help page for openid module with short description of what does the module offer
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/openid.module5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module
index b2836a7cf..54eee9abf 100644
--- a/modules/openid/openid.module
+++ b/modules/openid/openid.module
@@ -43,6 +43,11 @@ function openid_help($path, $arg) {
switch ($path) {
case 'user/%/openid':
return t('You may login to this site using an OpenID. You may add your OpenId URLs below, and also see a list of any OpenIDs which have already been added.');
+ case 'admin/help#openid':
+ $output = '<p>'. t('OpenID is a secure way to use one user ID and password to log in to many web sites without special software, giving the same password to each site, or losing control over which information is shared with each site that you visit.') .'</p>';
+ $output .= '<p>'. t('Users can create accounts using their OpenID, assign one or more OpenIDs to an existing account, and log in using an OpenID. This lowers the barrier to registration, which is good for the site, and offers convenience and security to the users. Logging in via OpenID is far more secure than cross-site logins using drupal.module.') .'</p>';
+ $output .= '<p>'. t('More information on OpenID is available at <a href="@url">OpenID.net</a>', array('@url' => url('http://openid.net'))) .'</p>';
+ return $output;
}
}