public function UpdateKernel::handle in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Update/UpdateKernel.php \Drupal\Core\Update\UpdateKernel::handle()
Overrides DrupalKernel::handle
File
- core/lib/ Drupal/ Core/ Update/ UpdateKernel.php, line 57 
Class
- UpdateKernel
- Defines a kernel which is used primarily to run the update of Drupal.
Namespace
Drupal\Core\UpdateCode
public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = TRUE) {
  try {
    static::bootEnvironment();
    // First boot up basic things, like loading the include files.
    $this
      ->initializeSettings($request);
    ReverseProxyMiddleware::setSettingsOnRequest($request, Settings::getInstance());
    $this
      ->boot();
    $container = $this
      ->getContainer();
    /** @var \Symfony\Component\HttpFoundation\RequestStack $request_stack */
    $request_stack = $container
      ->get('request_stack');
    $request_stack
      ->push($request);
    $this
      ->preHandle($request);
    // Handle the actual request. We need the session both for authentication
    // as well as the DB update, like
    // \Drupal\system\Controller\DbUpdateController::batchFinished.
    $this
      ->bootSession($request, $type);
    $result = $this
      ->handleRaw($request);
    $this
      ->shutdownSession($request);
    return $result;
  } catch (\Exception $e) {
    return $this
      ->handleException($e, $request, $type);
  }
}