You are here

function ldap_query_help in Lightweight Directory Access Protocol (LDAP) 8.3

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

Implements hook_help().

File

ldap_query/ldap_query.module, line 14
Module file for ldap_query.

Code

function ldap_query_help($route_name, RouteMatchInterface $route_match) {
  $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 ($route_name) {
    case 'ldap_query.admin_form':
      $output = '<p>' . $help . '</p>';
      return $output;
  }
}