You are here

function _ldapdata_user_categories in LDAP integration 6

Implements hook_user() categories operation.

1 call to _ldapdata_user_categories()
ldapdata_user in ./ldapdata.module
Implements hook_user().

File

./ldapdata.module, line 124
ldapdata provides data maping against ldap server.

Code

function _ldapdata_user_categories() {
  return array(
    array(
      'name' => LDAPDATA_USER_DATA,
      'title' => t('LDAP entry'),
      'weight' => 50,
      'access callback' => 'ldapdata_category_access',
      'access arguments' => array(
        1,
      ),
    ),
  );
}