You are here

function ldap_query_help in Lightweight Directory Access Protocol (LDAP) 8.2

Same name and namespace in other branches
  1. 8.4 ldap_query/ldap_query.module \ldap_query_help()
  2. 8.3 ldap_query/ldap_query.module \ldap_query_help()
  3. 7.2 ldap_query/ldap_query.module \ldap_query_help()

File

ldap_query/ldap_query.module, line 131

Code

function ldap_query_help($path, $arg) {
  $help = '<h3>' . t('LDAP Query Module') . '</h3><p>' . t('This module does nothing in and of itself.  It should only be
    enabled and configured if another module requires it.') . '</p>';
  switch ($path) {
    case 'admin/config/people/ldap/query':
      $output = '<p>' . $help . '</p>';
      return $output;
    case 'admin/help#ldap_query':
      $output = '<p>' . $help . '</p>';
      return $output;
  }
}