class SocialCoreServiceProvider in Open Social 8
Same name and namespace in other branches
- 8.9 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
- 8.8 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 13
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');
}
}
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:: |