class NormalInstallerServiceProvider in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Installer/NormalInstallerServiceProvider.php \Drupal\Core\Installer\NormalInstallerServiceProvider
Service provider for the non early installer environment.
Hierarchy
- class \Drupal\Core\Installer\NormalInstallerServiceProvider implements ServiceProviderInterface
Expanded class hierarchy of NormalInstallerServiceProvider
File
- core/
lib/ Drupal/ Core/ Installer/ NormalInstallerServiceProvider.php, line 11
Namespace
Drupal\Core\InstallerView source
class NormalInstallerServiceProvider implements ServiceProviderInterface {
/**
* {@inheritdoc}
*/
public function register(ContainerBuilder $container) {
// Use performance-optimized extension lists.
$container
->getDefinition('extension.list.module')
->setClass('Drupal\\Core\\Installer\\InstallerModuleExtensionList');
$container
->getDefinition('extension.list.theme')
->setClass('Drupal\\Core\\Installer\\InstallerThemeExtensionList');
$container
->getDefinition('extension.list.theme_engine')
->setClass('Drupal\\Core\\Installer\\InstallerThemeEngineExtensionList');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NormalInstallerServiceProvider:: |
public | function |
Registers services to the container. Overrides ServiceProviderInterface:: |