You are here

protected function SessionManager::isCli in Zircon Profile 8

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

Returns whether the current PHP process runs on CLI.

Command line clients do not support cookies nor sessions.

Return value

bool

4 calls to SessionManager::isCli()
SessionManager::delete in core/lib/Drupal/Core/Session/SessionManager.php
Ends a specific user's session(s).
SessionManager::regenerate in core/lib/Drupal/Core/Session/SessionManager.php
Regenerates id that represents this storage.
SessionManager::save in core/lib/Drupal/Core/Session/SessionManager.php
Force the session to be saved and closed.
SessionManager::startNow in core/lib/Drupal/Core/Session/SessionManager.php
Forcibly start a PHP session.

File

core/lib/Drupal/Core/Session/SessionManager.php, line 286
Contains \Drupal\Core\Session\SessionManager.

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

protected function isCli() {
  return PHP_SAPI === 'cli';
}