function install_bootstrap_full

Same name and namespace in other branches
  1. 7.x includes/install.core.inc \install_bootstrap_full()
  2. 9 core/includes/install.core.inc \install_bootstrap_full()
  3. 8.9.x core/includes/install.core.inc \install_bootstrap_full()
  4. 11.x core/includes/install.core.inc \install_bootstrap_full()

Performs a full bootstrap of Drupal during installation.

File

core/includes/install.core.inc, line 1567

Code

function install_bootstrap_full() {
  // Store the session on the request object and start it.
  /** @var \Symfony\Component\HttpFoundation\Session\SessionInterface $session */
  $session = \Drupal::service('session');
  \Drupal::request()->setSession($session);
  $session->start();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.