Version 1
[yaffs-website] / web / modules / contrib / fontyourface / src / Form / FontForm.php
diff --git a/web/modules/contrib/fontyourface/src/Form/FontForm.php b/web/modules/contrib/fontyourface/src/Form/FontForm.php
new file mode 100644 (file)
index 0000000..78b8dcd
--- /dev/null
@@ -0,0 +1,48 @@
+<?php
+
+namespace Drupal\fontyourface\Form;
+
+use Drupal\Core\Entity\ContentEntityForm;
+use Drupal\Core\Form\FormStateInterface;
+
+/**
+ * Form controller for Font edit forms.
+ *
+ * @ingroup fontyourface
+ */
+class FontForm extends ContentEntityForm {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    /* @var $entity \Drupal\fontyourface\Entity\Font */
+    $form = parent::buildForm($form, $form_state);
+    $entity = $this->entity;
+
+    return $form;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function save(array $form, FormStateInterface $form_state) {
+    $entity = $this->entity;
+    $status = parent::save($form, $form_state);
+
+    switch ($status) {
+      case SAVED_NEW:
+        drupal_set_message($this->t('Created the %label Font.', [
+          '%label' => $entity->label(),
+        ]));
+        break;
+
+      default:
+        drupal_set_message($this->t('Saved the %label Font.', [
+          '%label' => $entity->label(),
+        ]));
+    }
+    $form_state->setRedirect('entity.font.canonical', ['font' => $entity->id()]);
+  }
+
+}