You are here

function ldapauth_help in LDAP integration 5.2

Same name and namespace in other branches
  1. 5 ldapauth.module \ldapauth_help()
  2. 6 ldapauth.module \ldapauth_help()

Implements hook_help()

File

./ldapauth.module, line 26

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;
}