Same name in this branch
  1. 10 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\TestForm
  2. 10 core/modules/page_cache/tests/modules/src/Form/TestForm.php \Drupal\page_cache_form_test\Form\TestForm
  3. 10 core/modules/block/tests/modules/block_test/src/Form/TestForm.php \Drupal\block_test\Form\TestForm
  4. 10 core/modules/system/tests/modules/test_page_test/src/Form/TestForm.php \Drupal\test_page_test\Form\TestForm
  5. 10 core/modules/system/tests/modules/dialog_renderer_test/src/Form/TestForm.php \Drupal\dialog_renderer_test\Form\TestForm
Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\TestForm
  2. 9 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\TestForm

Hierarchy

Expanded class hierarchy of TestForm

File

core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php, line 971

Namespace

Drupal\Tests\Core\Form
View source
class TestForm implements FormInterface {
  public function getFormId() {
    return 'test_form';
  }
  public function buildForm(array $form, FormStateInterface $form_state) {
    return test_form_id();
  }
  public function validateForm(array &$form, FormStateInterface $form_state) {
  }
  public function submitForm(array &$form, FormStateInterface $form_state) {
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TestForm::buildForm public function Form constructor. Overrides FormInterface::buildForm 1
TestForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
TestForm::submitForm public function Form submission handler. Overrides FormInterface::submitForm
TestForm::validateForm public function Form validation handler. Overrides FormInterface::validateForm