function shib_auth_help in Shibboleth Authentication 5.2
Same name and namespace in other branches
- 8.4 shib_auth.module \shib_auth_help()
- 8 shib_auth.module \shib_auth_help()
- 5.3 shib_auth.module \shib_auth_help()
- 6.4 shib_auth.module \shib_auth_help()
- 6 shib_auth.module \shib_auth_help()
- 6.2 shib_auth.module \shib_auth_help()
- 6.3 shib_auth.module \shib_auth_help()
- 7.4 shib_auth.module \shib_auth_help()
Display help and module information
Parameters
path which path of the site we're displaying help:
arg array that holds the current path as would be returned from arg() function:
Return value
help text for the path
File
- ./
shib_auth.module, line 9
Code
function shib_auth_help($section) {
$output = '';
switch ($section) {
case 'admin/help#shib_auth':
//TODO
$output = '<p>' . t("The Shibboleth authentication module let you utilize the advantages of the Single Sign On (SSO) methods.") . '</p>';
break;
case 'admin/settings/shib_auth':
$output = t('');
}
return $output;
}