You are here

protected function InstallCommand::getSitePath in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Command/InstallCommand.php \Drupal\Core\Command\InstallCommand::getSitePath()
  2. 10 core/lib/Drupal/Core/Command/InstallCommand.php \Drupal\Core\Command\InstallCommand::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.

2 calls to InstallCommand::getSitePath()
InstallCommand::execute in core/lib/Drupal/Core/Command/InstallCommand.php
Executes the current command.
InstallCommand::isDrupalInstalled in core/lib/Drupal/Core/Command/InstallCommand.php
Returns whether there is already an existing Drupal installation.

File

core/lib/Drupal/Core/Command/InstallCommand.php, line 230

Class

InstallCommand
Installs a Drupal site for local testing/development.

Namespace

Drupal\Core\Command

Code

protected function getSitePath() {
  return getenv('DRUPAL_DEV_SITE_PATH') ?: 'sites/default';
}