class RegisterLazyRouteEnhancers in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Core/DependencyInjection/Compiler/RegisterLazyRouteEnhancers.php \Drupal\Core\DependencyInjection\Compiler\RegisterLazyRouteEnhancers
Registers all lazy route enhancers onto the lazy route enhancers.
Hierarchy
- class \Drupal\Core\DependencyInjection\Compiler\RegisterLazyRouteEnhancers implements CompilerPassInterface
Expanded class hierarchy of RegisterLazyRouteEnhancers
File
- lib/
Drupal/ Core/ DependencyInjection/ Compiler/ RegisterLazyRouteEnhancers.php, line 17 - Contains \Drupal\Core\DependencyInjection\Compiler\RegisterLazyRouteEnhancers.
Namespace
Drupal\Core\DependencyInjection\CompilerView source
class RegisterLazyRouteEnhancers implements CompilerPassInterface {
/**
* {@inheritdoc}
*/
public function process(ContainerBuilder $container) {
if (!$container
->hasDefinition('route_enhancer.lazy_collector')) {
return;
}
$service_ids = [];
foreach ($container
->findTaggedServiceIds('route_enhancer') as $id => $attributes) {
$service_ids[$id] = $id;
}
$container
->getDefinition('route_enhancer.lazy_collector')
->addArgument($service_ids);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RegisterLazyRouteEnhancers:: |
public | function |
You can modify the container here before it is dumped to PHP code. Overrides CompilerPassInterface:: |