1 user.api.php hook_user_logout($account)

The user just logged out.

Parameters

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

Related topics

File

core/modules/user/user.api.php, line 277
Hooks provided by the User module.

Code

function hook_user_logout($account) {
  db_insert('logouts')
    ->fields(array(
      'uid' => $account->uid,
      'time' => time(),
    ))
    ->execute();
}