function RouterTestServiceProvider::register
Same name in other branches
- 8.9.x core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php \Drupal\router_test\RouterTestServiceProvider::register()
- 10 core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php \Drupal\router_test\RouterTestServiceProvider::register()
- 11.x core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php \Drupal\router_test\RouterTestServiceProvider::register()
Overrides ServiceProviderInterface::register
File
-
core/
modules/ system/ tests/ modules/ router_test_directory/ src/ RouterTestServiceProvider.php, line 16
Class
- RouterTestServiceProvider
- Registers a dynamic route provider.
Namespace
Drupal\router_testCode
public function register(ContainerBuilder $container) {
$container->register('router_test.subscriber', 'Drupal\\router_test\\RouteTestSubscriber')
->addTag('event_subscriber');
$container->register('access_check.router_test', 'Drupal\\router_test\\Access\\TestAccessCheck')
->addTag('access_check', [
'applies_to' => '_access_router_test',
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.