You are here

function ldapdata_help in LDAP integration 5

Same name and namespace in other branches
  1. 5.2 ldapdata.module \ldapdata_help()

Implements hook_help()

File

./ldapdata.module, line 31

Code

function ldapdata_help($section) {
  $output = '';
  switch ($section) {
    case 'admin/modules#name':
      $output = 'ldapdata';
      break;
    case 'admin/modules#description':
    case 'admin/help#ldapauth':
      $output = 'Permits reading and editing of own\'s LDAP data for users authenticated via <strong>ldapauth</strong> module.';
      break;
    case 'user/help#ldapauth':
      $output = t('Edit LDAP account info');
      break;
  }
  return $output;
}