function hook_user_update

A user account was updated.

Modules may use this hook to update their user data in a custom storage after a user account has been updated.

Parameters

$edit: The array of form values submitted by the user.

$account: The user object on which the operation is performed.

$category: The active category of user information being edited.

See also

hook_user_presave()

hook_user_insert()

Related topics

2 functions implement hook_user_update()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

entity_crud_hook_test_user_update in drupal-7.x/modules/simpletest/tests/entity_crud_hook_test.module
Implements hook_user_update().
trigger_user_update in drupal-7.x/modules/trigger/trigger.module
Implements hook_user_update().

Archivo

drupal-7.x/modules/user/user.api.php, line 277
Hooks provided by the User module.

Código

function hook_user_update(&$edit, $account, $category) {
  db_insert('user_changes')->fields(array(
    'uid' => $account->uid,
    'changed' => time(),
  ))->execute();
}