function ldap_user_user_update in Lightweight Directory Access Protocol (LDAP) 8.3
Same name and namespace in other branches
- 8.4 ldap_user/ldap_user.module \ldap_user_user_update()
 - 8.2 ldap_user/ldap_user.module \ldap_user_user_update()
 - 7.2 ldap_user/ldap_user.module \ldap_user_user_update()
 
Implements hook_ENTITY_TYPE_update().
File
- ldap_user/
ldap_user.module, line 119  - Module for the LDAP User Entity.
 
Code
function ldap_user_user_update($account) {
  $processor = new DrupalUserProcessor();
  $processor
    ->drupalUserUpdated($account);
}