You are here

public static function DrupalKernel::createFromRequest in Zircon Profile 8

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

Create a DrupalKernel object from a request.

Parameters

\Symfony\Component\HttpFoundation\Request $request: The request.

$class_loader: The class loader. Normally Composer's ClassLoader, as included by the front controller, but may also be decorated; e.g., \Symfony\Component\ClassLoader\ApcClassLoader.

string $environment: String indicating the environment, e.g. 'prod' or 'dev'.

bool $allow_dumping: (optional) FALSE to stop the container from being written to or read from disk. Defaults to TRUE.

Return value

static

Throws

\Symfony\Component\HttpKernel\Exception\BadRequestHttpException In case the host name in the request is not trusted.

8 calls to DrupalKernel::createFromRequest()
authorize.php in core/authorize.php
Administrative script for running authorized file operations.
BrowserTestBase::installDrupal in core/modules/simpletest/src/BrowserTestBase.php
Installs Drupal into the Simpletest site.
DrupalKernelTest::getTestKernel in core/modules/system/src/Tests/DrupalKernel/DrupalKernelTest.php
Build a kernel for testings.
DrupalKernelTest::testRepeatedBootWithDifferentEnvironment in core/modules/system/src/Tests/DrupalKernel/DrupalKernelTest.php
Tests repeated loading of compiled DIC with different environment.
InstallerTestBase::setUp in core/modules/simpletest/src/InstallerTestBase.php
Sets up a Drupal site for running functional and integration tests.

... See full list

1 method overrides DrupalKernel::createFromRequest()
TestRunnerKernel::createFromRequest in core/lib/Drupal/Core/Test/TestRunnerKernel.php
Create a DrupalKernel object from a request.

File

core/lib/Drupal/Core/DrupalKernel.php, line 261
Contains \Drupal\Core\DrupalKernel.

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

public static function createFromRequest(Request $request, $class_loader, $environment, $allow_dumping = TRUE) {
  $kernel = new static($environment, $class_loader, $allow_dumping);
  static::bootEnvironment();
  $kernel
    ->initializeSettings($request);
  return $kernel;
}