SessionManager::startNow

protected SessionManager::startNow()

Forcibly start a PHP session.

Return value

bool TRUE if the session is started.

File

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

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
protected function startNow() {
  if ($this->isCli()) {
    return FALSE;
  }
 
  if ($this->startedLazy) {
    // Save current session data before starting it, as PHP will destroy it.
    $session_data = $_SESSION;
  }
 
  $result = parent::start();
 
  // Restore session data.
  if ($this->startedLazy) {
    $_SESSION = $session_data;
    $this->loadSession();
  }
 
  return $result;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.