Version 1
[yaffs-website] / web / modules / contrib / entity_browser / tests / modules / entity_browser_test / src / Plugin / EntityBrowser / Widget / DummyWidget.php
diff --git a/web/modules/contrib/entity_browser/tests/modules/entity_browser_test/src/Plugin/EntityBrowser/Widget/DummyWidget.php b/web/modules/contrib/entity_browser/tests/modules/entity_browser_test/src/Plugin/EntityBrowser/Widget/DummyWidget.php
new file mode 100644 (file)
index 0000000..7d19edf
--- /dev/null
@@ -0,0 +1,58 @@
+<?php
+
+namespace Drupal\entity_browser_test\Plugin\EntityBrowser\Widget;
+
+use Drupal\Core\Form\FormStateInterface;
+use Drupal\entity_browser\WidgetBase;
+
+/**
+ * Dummy widget implementation for test purposes.
+ *
+ * @EntityBrowserWidget(
+ *   id = "dummy",
+ *   label = @Translation("Dummy widget"),
+ *   description = @Translation("Dummy widget existing for testing purposes."),
+ *   auto_select = FALSE
+ * )
+ */
+class DummyWidget extends WidgetBase {
+
+  /**
+   * Entity to be returned.
+   *
+   * @var \Drupal\Core\Entity\EntityInterface
+   */
+  public $entity;
+
+  /**
+   * {@inheritdoc}
+   */
+  public function defaultConfiguration() {
+    return ['text' => ''] + parent::defaultConfiguration();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getForm(array &$original_form, FormStateInterface $form_state, array $additional_widget_parameters) {
+    return [
+      '#markup' => $this->configuration['text'],
+      '#parents' => [],
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submit(array &$element, array &$form, FormStateInterface $form_state) {
+    $this->selectEntities([$this->entity], $form_state);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function prepareEntities(array $form, FormStateInterface $form_state) {
+    return $form_state->getValue('dummy_entities', []);
+  }
+
+}