W3cubDocs

/Drupal 8

public function RegisterLazyRouteFilters::process

public RegisterLazyRouteFilters::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/RegisterLazyRouteFilters.php, line 16

Class

RegisterLazyRouteFilters
Registers all lazy route filters onto the lazy route filter.

Namespace

Drupal\Core\DependencyInjection\Compiler

Code

public function process(ContainerBuilder $container) {
  if (!$container->hasDefinition('route_filter.lazy_collector')) {
    return;
  }

  $service_ids = [];

  foreach ($container->findTaggedServiceIds('route_filter') as $id => $attributes) {
    $service_ids[$id] = $id;
  }

  $container
  ->getDefinition('route_filter.lazy_collector')
    ->addArgument($service_ids);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!DependencyInjection!Compiler!RegisterLazyRouteFilters.php/function/RegisterLazyRouteFilters::process/8.1.x