class SocialCoreServiceProvider in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 8 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 8.2 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 8.3 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 8.4 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 8.5 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 8.6 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 8.7 modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 10.3.x modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 10.0.x modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 10.1.x modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
- 10.2.x modules/social_features/social_core/src/SocialCoreServiceProvider.php \Drupal\social_core\SocialCoreServiceProvider
Class SocialCoreServiceProvider.
@package Drupal\social_core
Hierarchy
- class \Drupal\Core\DependencyInjection\ServiceProviderBase implements ServiceModifierInterface, ServiceProviderInterface
- class \Drupal\social_core\SocialCoreServiceProvider
Expanded class hierarchy of SocialCoreServiceProvider
File
- modules/
social_features/ social_core/ src/ SocialCoreServiceProvider.php, line 15
Namespace
Drupal\social_coreView source
class SocialCoreServiceProvider extends ServiceProviderBase {
/**
* {@inheritdoc}
*/
public function alter(ContainerBuilder $container) {
// Overrides language_manager class to test domain language negotiation.
$definition = $container
->getDefinition('entity.autocomplete_matcher');
$definition
->setClass('Drupal\\social_core\\Entity\\EntityAutocompleteMatcher');
$modules = $container
->getParameter('container.modules');
// Check for installed layout_builder module.
if (isset($modules['layout_builder'])) {
// If it's installed we can register our service, using layout_builder
// classes to check whether entities enabled layout builder.
$service_definition = new Definition(LayoutService::class);
$container
->setDefinition('social_core.layout', $service_definition);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ServiceProviderBase:: |
public | function |
Registers services to the container. Overrides ServiceProviderInterface:: |
1 |
SocialCoreServiceProvider:: |
public | function |
Modifies existing service definitions. Overrides ServiceProviderBase:: |