Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::setSitePath()
  2. 9 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::setSitePath()

Set the current site path directory.

Format: "folder-name/child-folder" usually uses "sites/default".

Parameters

string $path: The current site path.

Throws

\LogicException In case the kernel is already booted.

Overrides DrupalKernelInterface::setSitePath

1 call to DrupalKernel::setSitePath()
DrupalKernel::initializeSettings in core/lib/Drupal/Core/DrupalKernel.php
Locate site path and initialize settings singleton.

File

core/lib/Drupal/Core/DrupalKernel.php, line 461

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

public function setSitePath($path) {
  if ($this->booted && $path !== $this->sitePath) {
    throw new \LogicException('Site path cannot be changed after calling boot()');
  }
  $this->sitePath = $path;
}