Version 1
[yaffs-website] / web / modules / contrib / ctools / src / Plugin / Deriver / EntityDeriverBase.php
diff --git a/web/modules/contrib/ctools/src/Plugin/Deriver/EntityDeriverBase.php b/web/modules/contrib/ctools/src/Plugin/Deriver/EntityDeriverBase.php
new file mode 100644 (file)
index 0000000..1adec99
--- /dev/null
@@ -0,0 +1,51 @@
+<?php
+
+namespace Drupal\ctools\Plugin\Deriver;
+
+
+use Drupal\Component\Plugin\Derivative\DeriverBase;
+use Drupal\Core\Entity\EntityManagerInterface;
+use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
+use Drupal\Core\StringTranslation\StringTranslationTrait;
+use Drupal\Core\StringTranslation\TranslationInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
+/**
+ * An abstract base class that sets up the needs of entity specific derivers.
+ */
+abstract class EntityDeriverBase extends DeriverBase implements ContainerDeriverInterface {
+
+  use StringTranslationTrait;
+
+  /**
+   * The entity manager.
+   *
+   * @var \Drupal\Core\Entity\EntityManagerInterface
+   */
+  protected $entityManager;
+
+  /**
+   * Constructs new EntityViewDeriver.
+   *
+   * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
+   *   The entity manager.
+   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
+   *   The string translation service.
+   */
+  public function __construct(EntityManagerInterface $entity_manager, TranslationInterface $string_translation) {
+    $this->entityManager = $entity_manager;
+    $this->stringTranslation = $string_translation;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container, $base_plugin_id) {
+    return new static(
+      $container->get('entity.manager'),
+      $container->get('string_translation')
+    );
+  }
+
+}
+