public function DecoratingConfigInstaller::checkConfigurationToInstall in Configuration selector 8
Same name and namespace in other branches
- 8.2 src/DecoratingConfigInstaller.php \Drupal\config_selector\DecoratingConfigInstaller::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
- src/
DecoratingConfigInstaller.php, line 98
Class
- DecoratingConfigInstaller
- Decorates the config.installer service so install_install_profiles() works.
Namespace
Drupal\config_selectorCode
public function checkConfigurationToInstall($type, $name) {
$this->decoratedService
->checkConfigurationToInstall($type, $name);
}