function ldapauth_help in LDAP integration 6
Same name and namespace in other branches
- 5.2 ldapauth.module \ldapauth_help()
- 5 ldapauth.module \ldapauth_help()
Implementation of hook_help().
File
- ./
ldapauth.module, line 56 - ldapauth provides authentication against ldap server.
Code
function ldapauth_help($path, $arg) {
switch ($path) {
case 'admin/settings/ldapauth':
return '<p>' . t('A system wide settings will affect all configured LDAP servers.') . '</p>';
}
}