RegisterLazyRouteEnhancers.php in Service Container 7.2
Same filename and directory in other branches
Namespace
Drupal\Core\DependencyInjection\CompilerFile
lib/Drupal/Core/DependencyInjection/Compiler/RegisterLazyRouteEnhancers.phpView source
<?php
/**
* @file
* Contains \Drupal\Core\DependencyInjection\Compiler\RegisterLazyRouteEnhancers.
*/
namespace Drupal\Core\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/**
* Registers all lazy route enhancers onto the lazy route enhancers.
*/
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);
}
}
Classes
Name | Description |
---|---|
RegisterLazyRouteEnhancers | Registers all lazy route enhancers onto the lazy route enhancers. |