You are here

function ldap_servers_help in Lightweight Directory Access Protocol (LDAP) 7

Same name and namespace in other branches
  1. 8.4 ldap_servers/ldap_servers.module \ldap_servers_help()
  2. 8.2 ldap_servers/ldap_servers.module \ldap_servers_help()
  3. 8.3 ldap_servers/ldap_servers.module \ldap_servers_help()
  4. 7.2 ldap_servers/ldap_servers.module \ldap_servers_help()

File

ldap_servers/ldap_servers.module, line 354

Code

function ldap_servers_help($path, $arg) {
  $servers_help = t('LDAP Servers stores "LDAP server configurations" so other modules
    can connect to them and leverage their data.  LDAP authentication and LDAP authorization
    are two such modules.  Generally only one LDAP Server Configuration is needed.
    When multiple LDAP server configurations are needed, each is not necessarily
    a separate physical LDAP server; they may have different binding users or some
    other configuration difference.', array(
    '!helplink' => l(LDAP_SERVERS_DRUPAL_HELP_URL, LDAP_SERVERS_DRUPAL_HELP_URL),
  ));
  switch ($path) {
    case 'admin/config/people/ldap/servers':
      $output = '<p>' . $servers_help . '</p>';
      return $output;
    case 'admin/help#ldap_servers':
      $output = '<p>' . $servers_help . '</p>';
      return $output;
  }
}