You are here

public function SessionManager::destroy in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Session/SessionManager.php \Drupal\Core\Session\SessionManager::destroy()

Destroys the current session and removes session cookies.

Overrides SessionManagerInterface::destroy

1 call to SessionManager::destroy()
SessionManager::save in core/lib/Drupal/Core/Session/SessionManager.php
Force the session to be saved and closed.

File

core/lib/Drupal/Core/Session/SessionManager.php, line 259

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

public function destroy() {
  session_destroy();

  // Unset the session cookies.
  $session_name = $this
    ->getName();
  $cookies = $this->requestStack
    ->getCurrentRequest()->cookies;

  // setcookie() can only be called when headers are not yet sent.
  if ($cookies
    ->has($session_name) && !headers_sent()) {
    $params = session_get_cookie_params();
    setcookie($session_name, '', REQUEST_TIME - 3600, $params['path'], $params['domain'], $params['secure'], $params['httponly']);
    $cookies
      ->remove($session_name);
  }
}