Version 1
[yaffs-website] / web / core / modules / system / tests / modules / form_test / src / Form / FormTestValidateRequiredNoTitleForm.php
diff --git a/web/core/modules/system/tests/modules/form_test/src/Form/FormTestValidateRequiredNoTitleForm.php b/web/core/modules/system/tests/modules/form_test/src/Form/FormTestValidateRequiredNoTitleForm.php
new file mode 100644 (file)
index 0000000..29b3b5f
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+
+namespace Drupal\form_test\Form;
+
+use Drupal\Core\Form\FormBase;
+use Drupal\Core\Form\FormStateInterface;
+
+/**
+ * Form constructor to test the #required property without #title.
+ */
+class FormTestValidateRequiredNoTitleForm extends FormBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFormId() {
+    return 'form_test_validate_required_form_no_title';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    $form['textfield'] = [
+      '#type' => 'textfield',
+      '#required' => TRUE,
+    ];
+    $form['actions'] = ['#type' => 'actions'];
+    $form['actions']['submit'] = ['#type' => 'submit', '#value' => 'Submit'];
+    return $form;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+    drupal_set_message('The form_test_validate_required_form_no_title form was submitted successfully.');
+  }
+
+}