Version 1
[yaffs-website] / web / modules / contrib / fontyourface / src / Form / FontDisplayDeleteForm.php
diff --git a/web/modules/contrib/fontyourface/src/Form/FontDisplayDeleteForm.php b/web/modules/contrib/fontyourface/src/Form/FontDisplayDeleteForm.php
new file mode 100644 (file)
index 0000000..c6352c8
--- /dev/null
@@ -0,0 +1,54 @@
+<?php
+
+namespace Drupal\fontyourface\Form;
+
+use Drupal\Core\Entity\EntityConfirmFormBase;
+use Drupal\Core\Form\FormStateInterface;
+use Drupal\Core\Url;
+
+/**
+ * Builds the form to delete Font display entities.
+ */
+class FontDisplayDeleteForm extends EntityConfirmFormBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getQuestion() {
+    return $this->t('Are you sure you want to delete %name?', ['%name' => $this->entity->label()]);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getCancelUrl() {
+    return new Url('entity.font_display.collection');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getConfirmText() {
+    return $this->t('Delete');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+    $this->entity->delete();
+
+    drupal_set_message(
+      $this->t('content @type: deleted @label.',
+        [
+          '@type' => $this->entity->bundle(),
+          '@label' => $this->entity->label(),
+        ]
+        )
+    );
+
+    drupal_flush_all_caches();
+    $form_state->setRedirectUrl($this->getCancelUrl());
+  }
+
+}