class AppRootFactory in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/AppRootFactory.php \Drupal\Core\AppRootFactory
Gets the app root from the kernel.
Hierarchy
- class \Drupal\Core\AppRootFactory
Expanded class hierarchy of AppRootFactory
1 string reference to 'AppRootFactory'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses AppRootFactory
File
- core/
lib/ Drupal/ Core/ AppRootFactory.php, line 13 - Contains \Drupal\Core\AppRootFactory.
Namespace
Drupal\CoreView source
class AppRootFactory {
/**
* The Drupal kernel.
*
* @var \Drupal\Core\DrupalKernelInterface
*/
protected $drupalKernel;
/**
* Constructs an AppRootFactory instance.
*
* @param \Drupal\Core\DrupalKernelInterface $drupal_kernel
* The Drupal kernel.
*/
public function __construct(DrupalKernelInterface $drupal_kernel) {
$this->drupalKernel = $drupal_kernel;
}
/**
* Gets the app root.
*
* @return string
*/
public function get() {
return $this->drupalKernel
->getAppRoot();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AppRootFactory:: |
protected | property | The Drupal kernel. | |
AppRootFactory:: |
public | function | Gets the app root. | |
AppRootFactory:: |
public | function | Constructs an AppRootFactory instance. |