Version 1
[yaffs-website] / web / core / modules / system / tests / modules / form_test / src / Form / FormTestRangeInvalidForm.php
diff --git a/web/core/modules/system/tests/modules/form_test/src/Form/FormTestRangeInvalidForm.php b/web/core/modules/system/tests/modules/form_test/src/Form/FormTestRangeInvalidForm.php
new file mode 100644 (file)
index 0000000..5415205
--- /dev/null
@@ -0,0 +1,44 @@
+<?php
+
+namespace Drupal\form_test\Form;
+
+use Drupal\Core\Form\FormBase;
+use Drupal\Core\Form\FormStateInterface;
+
+/**
+ * Form constructor for testing invalid #type 'range' elements.
+ */
+class FormTestRangeInvalidForm extends FormBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFormId() {
+    return 'form_test_range_invalid';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    $form['minmax'] = [
+      '#type' => 'range',
+      '#min' => 10,
+      '#max' => 5,
+      '#title' => 'Invalid range',
+      '#description' => 'Minimum greater than maximum.',
+    ];
+    $form['submit'] = [
+      '#type' => 'submit',
+      '#value' => 'Submit',
+    ];
+    return $form;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+  }
+
+}