You are here

public function UserStorage::updateLastLoginTimestamp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/src/UserStorage.php \Drupal\user\UserStorage::updateLastLoginTimestamp()

Update the last login timestamp of the user.

Parameters

\Drupal\user\UserInterface $account:

Overrides UserStorageInterface::updateLastLoginTimestamp

File

core/modules/user/src/UserStorage.php, line 41

Class

UserStorage
Controller class for users.

Namespace

Drupal\user

Code

public function updateLastLoginTimestamp(UserInterface $account) {
  $this->database
    ->update($this
    ->getDataTable())
    ->fields([
    'login' => $account
      ->getLastLoginTime(),
  ])
    ->condition('uid', $account
    ->id())
    ->execute();

  // Ensure that the entity cache is cleared.
  $this
    ->resetCache([
    $account
      ->id(),
  ]);
}