Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / plugin-manager / hook / src / ExamplePluginManager.php.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/plugin-manager/hook/src/ExamplePluginManager.php.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/plugin-manager/hook/src/ExamplePluginManager.php.twig
new file mode 100644 (file)
index 0000000..a8acb83
--- /dev/null
@@ -0,0 +1,59 @@
+<?php
+
+namespace Drupal\{{ machine_name }};
+
+use Drupal\Core\Cache\CacheBackendInterface;
+use Drupal\Core\Extension\ModuleHandlerInterface;
+use Drupal\Core\Plugin\DefaultPluginManager;
+use Drupal\Core\Plugin\Discovery\HookDiscovery;
+use Drupal\Core\Plugin\Factory\ContainerFactory;
+
+/**
+ * Defines a plugin manager to deal with {{ plugin_type|plural }}.
+ *
+ * @see \Drupal\{{ machine_name }}\{{ class_prefix }}Default
+ * @see \Drupal\{{ machine_name }}\{{ class_prefix }}Interface
+ * @see plugin_api
+ */
+class {{ class_prefix }}PluginManager extends DefaultPluginManager {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected $defaults = [
+    // The {{ plugin_type }} id. Set by the plugin system based on the array key.
+    'id' => '',
+    // The {{ plugin_type }} label.
+    'label' => '',
+    // The {{ plugin_type }} description.
+    'description' => '',
+    // Default plugin class.
+    'class' => 'Drupal\{{ machine_name }}\{{ class_prefix }}Default',
+  ];
+
+  /**
+   * Constructs {{ class_prefix }}PluginManager object.
+   *
+   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
+   *   The module handler to invoke the alter hook with.
+   * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
+   *   Cache backend instance to use.
+   */
+  public function __construct(ModuleHandlerInterface $module_handler, CacheBackendInterface $cache_backend) {
+    $this->factory = new ContainerFactory($this);
+    $this->moduleHandler = $module_handler;
+    $this->alterInfo('{{ plugin_type }}_info');
+    $this->setCacheBackend($cache_backend, '{{ plugin_type }}_plugins');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getDiscovery() {
+    if (!isset($this->discovery)) {
+      $this->discovery = new HookDiscovery($this->moduleHandler, '{{ plugin_type }}_info');
+    }
+    return $this->discovery;
+  }
+
+}