function DrupalKernel::guessApplicationRoot
Same name in other branches
- 9 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::guessApplicationRoot()
- 10 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::guessApplicationRoot()
- 11.x core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::guessApplicationRoot()
Determine the application root directory based on this file's location.
Return value
string The application root.
3 calls to DrupalKernel::guessApplicationRoot()
- DrupalKernel::bootEnvironment in core/
lib/ Drupal/ Core/ DrupalKernel.php - Setup a consistent PHP environment.
- DrupalKernel::findSitePath in core/
lib/ Drupal/ Core/ DrupalKernel.php - Returns the appropriate site directory for a request.
- DrupalKernel::__construct in core/
lib/ Drupal/ Core/ DrupalKernel.php - Constructs a DrupalKernel object.
File
-
core/
lib/ Drupal/ Core/ DrupalKernel.php, line 311
Class
- DrupalKernel
- The DrupalKernel class is the core of Drupal itself.
Namespace
Drupal\CoreCode
protected static function guessApplicationRoot() {
// Determine the application root by:
// - Removing the namespace directories from the path.
// - Getting the path to the directory two levels up from the path
// determined in the previous step.
return dirname(dirname(substr(__DIR__, 0, -strlen(__NAMESPACE__))));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.