function ldap_user_all_events in Lightweight Directory Access Protocol (LDAP) 8.2
Same name and namespace in other branches
- 7.2 ldap_user/ldap_user.module \ldap_user_all_events()
5 calls to ldap_user_all_events()
- LdapUserConf::drupalUserToLdapEntry in ldap_user/
LdapUserConf.class.php - populate ldap entry array for provisioning
- LdapUserConf::entryToUserEdit in ldap_user/
LdapUserConf.class.php - populate $user edit array (used in hook_user_save, hook_user_update, etc) ... should not assume all attribues are present in ldap entry
- LdapUserConf::getProvisionRelatedLdapEntry in ldap_user/
LdapUserConf.class.php - given a drupal account, find the related ldap entry.
- LdapUserConf::getSynchMappings in ldap_user/
LdapUserConf.class.php - Util to fetch mappings for a given direction
- LdapUserConf::ldapContextToProvEvents in ldap_user/
LdapUserConf.class.php - converts the more general ldap_context string to its associated ldap user event
File
- ldap_user/
ldap_user.module, line 1096 - Module for the LDAP User Entity
Code
function ldap_user_all_events() {
return array(
LDAP_USER_EVENT_SYNCH_TO_DRUPAL_USER,
LDAP_USER_EVENT_CREATE_DRUPAL_USER,
LDAP_USER_EVENT_SYNCH_TO_LDAP_ENTRY,
LDAP_USER_EVENT_CREATE_LDAP_ENTRY,
LDAP_USER_EVENT_LDAP_ASSOCIATE_DRUPAL_ACCT,
);
}