protected function ConfigInstaller::lazyLoadItself in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyClass/Config/ConfigInstaller.php \Drupal\Core\ProxyClass\Config\ConfigInstaller::lazyLoadItself()
- 9 core/lib/Drupal/Core/ProxyClass/Config/ConfigInstaller.php \Drupal\Core\ProxyClass\Config\ConfigInstaller::lazyLoadItself()
Lazy loads the real service from the container.
Return value
object Returns the constructed real service.
8 calls to ConfigInstaller::lazyLoadItself()
- ConfigInstaller::checkConfigurationToInstall in core/
lib/ Drupal/ Core/ ProxyClass/ Config/ ConfigInstaller.php - Checks the configuration that will be installed for an extension.
- ConfigInstaller::getSourceStorage in core/
lib/ Drupal/ Core/ ProxyClass/ Config/ ConfigInstaller.php - Gets the configuration storage that provides the default configuration.
- ConfigInstaller::installCollectionDefaultConfig in core/
lib/ Drupal/ Core/ ProxyClass/ Config/ ConfigInstaller.php - Installs all default configuration in the specified collection.
- ConfigInstaller::installDefaultConfig in core/
lib/ Drupal/ Core/ ProxyClass/ Config/ ConfigInstaller.php - Installs the default configuration of a given extension.
- ConfigInstaller::installOptionalConfig in core/
lib/ Drupal/ Core/ ProxyClass/ Config/ ConfigInstaller.php - Installs optional configuration.
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Config/ ConfigInstaller.php, line 61
Class
- ConfigInstaller
- Provides a proxy class for \Drupal\Core\Config\ConfigInstaller.
Namespace
Drupal\Core\ProxyClass\ConfigCode
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}