You are here

function ldapsync_menu in LDAP integration 6

Implementation of hook_menu().

File

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

Code

function ldapsync_menu() {
  return array(
    'admin/settings/ldap/ldapsync' => array(
      'title' => 'Synchronization',
      'description' => 'Configure LDAP sync settings.',
      'page callback' => 'drupal_get_form',
      'page arguments' => array(
        'ldapsync_admin_settings',
      ),
      'access arguments' => array(
        'administer ldap modules',
      ),
      'file' => 'ldapsync.admin.inc',
    ),
  );
}