function UserStorage::updateLastLoginTimestamp
Same name in other branches
- 9 core/modules/user/src/UserStorage.php \Drupal\user\UserStorage::updateLastLoginTimestamp()
- 8.9.x core/modules/user/src/UserStorage.php \Drupal\user\UserStorage::updateLastLoginTimestamp()
- 11.x core/modules/user/src/UserStorage.php \Drupal\user\UserStorage::updateLastLoginTimestamp()
Overrides UserStorageInterface::updateLastLoginTimestamp
File
-
core/
modules/ user/ src/ UserStorage.php, line 44
Class
- UserStorage
- Controller class for users.
Namespace
Drupal\userCode
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(),
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.