You are here

function ldapsync_help in LDAP integration 6

Implementation of hook_help().

File

./ldapsync.module, line 30
ldapsync keeps LDAP and Drupal user lists synchronized.

Code

function ldapsync_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#ldapsync":
      $output = '<p>' . t("Searches LDAP to update Drupal user membership and information.") . '</p>';
      break;
  }
  return $output;
}