SessionManager::isSessionObsolete

protected SessionManager::isSessionObsolete()

Determines whether the session contains user data.

Return value

bool TRUE when the session does not contain any values and therefore can be destroyed.

File

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

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

1
2
3
4
protected function isSessionObsolete() {
  $used_session_keys = array_filter($this->getSessionDataMask());
  return empty($used_session_keys);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.