protected function ServerCommand::getSitePath in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Command/ServerCommand.php \Drupal\Core\Command\ServerCommand::getSitePath()
- 10 core/lib/Drupal/Core/Command/ServerCommand.php \Drupal\Core\Command\ServerCommand::getSitePath()
Gets the site path.
Defaults to 'sites/default'. For testing purposes this can be overridden using the DRUPAL_DEV_SITE_PATH environment variable.
Return value
string The site path to use.
1 call to ServerCommand::getSitePath()
- ServerCommand::boot in core/
lib/ Drupal/ Core/ Command/ ServerCommand.php - Boots up a Drupal environment.
File
- core/
lib/ Drupal/ Core/ Command/ ServerCommand.php, line 273
Class
- ServerCommand
- Runs the PHP webserver for a Drupal site for local testing/development.
Namespace
Drupal\Core\CommandCode
protected function getSitePath() {
return getenv('DRUPAL_DEV_SITE_PATH') ?: 'sites/default';
}