RegisterLazyRouteEnhancers::process

public RegisterLazyRouteEnhancers::process(ContainerBuilder $container)

You can modify the container here before it is dumped to PHP code.

Parameters

ContainerBuilder $container:

Overrides CompilerPassInterface::process

File

core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterLazyRouteEnhancers.php, line 16

Class

RegisterLazyRouteEnhancers
Registers all lazy route enhancers onto the lazy route enhancers.

Namespace

Drupal\Core\DependencyInjection\Compiler

Code

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);
}
doc_Drupal
2016-10-29 09:37:09
Comments
Leave a Comment

Please login to continue.