function DrupalKernel::setSitePath
Set the current site path directory.
Format: "folder-name/child-folder" usually uses "sites/default".
Parameters
string $path: The current site path.
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 462  
Class
- DrupalKernel
 - The DrupalKernel class is the core of Drupal itself.
 
Namespace
Drupal\CoreCode
public function setSitePath($path) {
  if ($this->booted && $path !== $this->sitePath) {
    throw new \LogicException('Site path cannot be changed after calling boot()');
  }
  $this->sitePath = $path;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.