updateLastAccessTimestamp example

/** * Updates the current user's last access time. * * @param \Symfony\Component\HttpKernel\Event\TerminateEvent $event * The event to process. */
  public function onKernelTerminate(TerminateEvent $event) {
    if ($this->account->isAuthenticated() && REQUEST_TIME - $this->account->getLastAccessedTime() > Settings::get('session_write_interval', 180)) {
      // Do that no more than once per 180 seconds.       /** @var \Drupal\user\UserStorageInterface $storage */
      $storage = $this->entityTypeManager->getStorage('user');
      $storage->updateLastAccessTimestamp($this->account, REQUEST_TIME);
    }
  }

  /** * {@inheritdoc} */
  public static function getSubscribedEvents(): array {
    // Should go before other subscribers start to write their caches. Notably     // before \Drupal\Core\EventSubscriber\KernelDestructionSubscriber to     // prevent instantiation of destructed services.     $events[KernelEvents::TERMINATE][] = ['onKernelTerminate', 300];
    
Home | Imprint | This part of the site doesn't use cookies.