public function ConfigInstaller::checkConfigurationToInstall in Drupal 9
Same name in this branch
- 9 core/lib/Drupal/Core/Config/ConfigInstaller.php \Drupal\Core\Config\ConfigInstaller::checkConfigurationToInstall()
- 9 core/lib/Drupal/Core/ProxyClass/Config/ConfigInstaller.php \Drupal\Core\ProxyClass\Config\ConfigInstaller::checkConfigurationToInstall()
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyClass/Config/ConfigInstaller.php \Drupal\Core\ProxyClass\Config\ConfigInstaller::checkConfigurationToInstall()
- 10 core/lib/Drupal/Core/ProxyClass/Config/ConfigInstaller.php \Drupal\Core\ProxyClass\Config\ConfigInstaller::checkConfigurationToInstall()
Checks the configuration that will be installed for an extension.
Parameters
string $type: Type of extension to install.
string $name: Name of extension to install.
Throws
\Drupal\Core\Config\UnmetDependenciesException
\Drupal\Core\Config\PreExistingConfigException
Overrides ConfigInstallerInterface::checkConfigurationToInstall
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Config/ ConfigInstaller.php, line 130
Class
- ConfigInstaller
- Provides a proxy class for \Drupal\Core\Config\ConfigInstaller.
Namespace
Drupal\Core\ProxyClass\ConfigCode
public function checkConfigurationToInstall($type, $name) {
return $this
->lazyLoadItself()
->checkConfigurationToInstall($type, $name);
}