Version 1
[yaffs-website] / web / core / modules / system / tests / modules / form_test / src / Form / FormTestRequiredAttributeForm.php
diff --git a/web/core/modules/system/tests/modules/form_test/src/Form/FormTestRequiredAttributeForm.php b/web/core/modules/system/tests/modules/form_test/src/Form/FormTestRequiredAttributeForm.php
new file mode 100644 (file)
index 0000000..b0aa1b0
--- /dev/null
@@ -0,0 +1,44 @@
+<?php
+
+namespace Drupal\form_test\Form;
+
+use Drupal\Core\Form\FormBase;
+use Drupal\Core\Form\FormStateInterface;
+
+/**
+ * Builds a form to test the required attribute.
+ */
+class FormTestRequiredAttributeForm extends FormBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFormId() {
+    return 'form_test_required_attribute';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    foreach (['textfield', 'textarea', 'password'] as $type) {
+      $form[$type] = [
+        '#type' => $type,
+        '#required' => TRUE,
+        '#title' => $type,
+      ];
+    }
+    $form['submit'] = [
+      '#type' => 'submit',
+      '#value' => 'Submit',
+    ];
+    return $form;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+  }
+
+}