UserStorage::updateLastAccessTimestamp

public UserStorage::updateLastAccessTimestamp(AccountInterface $account, $timestamp)

Update the last access timestamp of the user.

Parameters

\Drupal\Core\Session\AccountInterface $account: The user object.

int $timestamp: The last access timestamp.

Overrides UserStorageInterface::updateLastAccessTimestamp

File

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

Class

UserStorage
Controller class for users.

Namespace

Drupal\user

Code

public function updateLastAccessTimestamp(AccountInterface $account, $timestamp) {
  $this->database->update('users_field_data')
    ->fields(array(
      'access' => $timestamp,
    ))
    ->condition('uid', $account->id())
    ->execute();
  // Ensure that the entity cache is cleared.
  $this->resetCache(array($account->id()));
}
doc_Drupal
2016-10-29 09:53:08
Comments
Leave a Comment

Please login to continue.