Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. SessionManager.php

function SessionManager::start

Overrides NativeSessionStorage::start

File

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

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

public function start() : bool {
    if (($this->started || $this->startedLazy) && !$this->closed) {
        return $this->started;
    }
    $request = $this->requestStack
        ->getCurrentRequest();
    $this->setOptions($this->sessionConfiguration
        ->getOptions($request));
    if ($this->sessionConfiguration
        ->hasSession($request)) {
        // If a session cookie exists, initialize the session. Otherwise the
        // session is only started on demand in save(), making
        // anonymous users not use a session cookie unless something is stored in
        // $_SESSION. This allows HTTP proxies to cache anonymous page views.
        $result = $this->startNow();
    }
    if (empty($result)) {
        // Initialize the session global and attach the Symfony session bags.
        $_SESSION = [];
        $this->loadSession();
        // NativeSessionStorage::loadSession() sets started to TRUE, reset it to
        // FALSE here.
        $this->started = FALSE;
        $this->startedLazy = TRUE;
        $result = FALSE;
    }
    return $result;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal