public function DecoratingConfigInstaller::installDefaultConfig in Configuration selector 8
Same name and namespace in other branches
- 8.2 src/DecoratingConfigInstaller.php \Drupal\config_selector\DecoratingConfigInstaller::installDefaultConfig()
Installs the default configuration of a given extension.
When an extension is installed, it searches all the default configuration directories for all other extensions to locate any configuration with its name prefix. For example, the Node module provides the frontpage view as a default configuration file: core/modules/node/config/install/views.view.frontpage.yml When the Views module is installed after the Node module is already enabled, the frontpage view will be installed.
Additionally, the default configuration directory for the extension being installed is searched to discover if it contains default configuration that is owned by other enabled extensions. So, the frontpage view will also be installed when the Node module is installed after Views.
Parameters
string $type: The extension type; e.g., 'module' or 'theme'.
string $name: The name of the module or theme to install default configuration for.
Overrides ConfigInstallerInterface::installDefaultConfig
See also
\Drupal\Core\Config\ExtensionInstallStorage
File
- src/
DecoratingConfigInstaller.php, line 40
Class
- DecoratingConfigInstaller
- Decorates the config.installer service so install_install_profiles() works.
Namespace
Drupal\config_selectorCode
public function installDefaultConfig($type, $name) {
$this->decoratedService
->installDefaultConfig($type, $name);
}