function shib_auth_help in Shibboleth Authentication 7.4
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()
- 5.2 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()
Implements hook_help().
File
- ./
shib_auth.module, line 88 - Drupal Shibboleth authentication module.
Code
function shib_auth_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#shib_auth':
$output = t('<p>The Shibboleth authentication module lets you utilize the advantages of the Single Sign On (SSO) methods.</p>');
$output .= t('<p>For more help related to Shibboleth and module configuration, see <a href=\\"@wiki\\">NIIF AAI wiki pages</a></p>', array(
'@wiki' => url('https://wiki.aai.niif.hu/index.php/Drupal_Shibboleth_module'),
));
break;
case 'admin/config/people/shib_auth':
$output = t('<p>The text shown in the block and on other login pages can be changed on the <a href="@block">block settings page</a></p>', array(
'@block' => url('admin/structure/block/manage/shib_auth/login_box/configure'),
));
break;
}
return $output;
}