function UserStorage::updateLastAccessTimestamp
Same name in other branches
- 9 core/modules/user/src/UserStorage.php \Drupal\user\UserStorage::updateLastAccessTimestamp()
- 10 core/modules/user/src/UserStorage.php \Drupal\user\UserStorage::updateLastAccessTimestamp()
- 11.x core/modules/user/src/UserStorage.php \Drupal\user\UserStorage::updateLastAccessTimestamp()
Overrides UserStorageInterface::updateLastAccessTimestamp
File
-
core/
modules/ user/ src/ UserStorage.php, line 53
Class
- UserStorage
- Controller class for users.
Namespace
Drupal\userCode
public function updateLastAccessTimestamp(AccountInterface $account, $timestamp) {
$this->database
->update($this->getDataTable())
->fields([
'access' => $timestamp,
])
->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.