Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Plugin / PluginManagerPass.php
diff --git a/web/core/lib/Drupal/Core/Plugin/PluginManagerPass.php b/web/core/lib/Drupal/Core/Plugin/PluginManagerPass.php
new file mode 100644 (file)
index 0000000..9d4a483
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+
+namespace Drupal\Core\Plugin;
+
+use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
+use Symfony\Component\DependencyInjection\ContainerBuilder;
+use Symfony\Component\DependencyInjection\Reference;
+
+/**
+ * Registers plugin managers to the plugin.cache_clearer service.
+ */
+class PluginManagerPass implements CompilerPassInterface {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function process(ContainerBuilder $container) {
+    $cache_clearer_definition = $container->getDefinition('plugin.cache_clearer');
+    foreach ($container->getDefinitions() as $service_id => $definition) {
+      if (strpos($service_id, 'plugin.manager.') === 0 || $definition->hasTag('plugin_manager_cache_clear')) {
+        if (is_subclass_of($definition->getClass(), '\Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface')) {
+          $cache_clearer_definition->addMethodCall('addCachedDiscovery', [new Reference($service_id)]);
+        }
+      }
+    }
+  }
+
+}