function ldapauth_help in LDAP integration 5
Same name and namespace in other branches
- 5.2 ldapauth.module \ldapauth_help()
- 6 ldapauth.module \ldapauth_help()
Implements hook_help()
File
- ./
ldapauth.module, line 32
Code
function ldapauth_help($section) {
$output = '';
switch ($section) {
case 'admin/modules#name':
$output = 'ldapauth';
break;
case 'admin/modules#description':
case 'admin/help#ldapauth':
$output = t('Enables authentication via LDAP.');
break;
case 'user/help#ldapauth':
$output = t('Login using LDAP.');
break;
}
return $output;
}