function install_bootstrap_full in Drupal 10
Same name and namespace in other branches
- 8 core/includes/install.core.inc \install_bootstrap_full()
- 7 includes/install.core.inc \install_bootstrap_full()
- 9 core/includes/install.core.inc \install_bootstrap_full()
Performs a full bootstrap of Drupal during installation.
1 string reference to 'install_bootstrap_full'
- install_tasks in core/
includes/ install.core.inc - Returns a list of all tasks the installer currently knows about.
File
- core/
includes/ install.core.inc, line 1547 - API functions for installing Drupal.
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();
}