class TestForm in Drupal 8
Same name in this branch
- 8 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\TestForm
- 8 core/modules/page_cache/tests/modules/src/Form/TestForm.php \Drupal\page_cache_form_test\Form\TestForm
- 8 core/modules/block/tests/modules/block_test/src/Form/TestForm.php \Drupal\block_test\Form\TestForm
- 8 core/modules/system/tests/modules/test_page_test/src/Form/TestForm.php \Drupal\test_page_test\Form\TestForm
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\TestForm
- 10 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\TestForm
Hierarchy
- class \Drupal\Tests\Core\Form\TestForm implements FormInterface
Expanded class hierarchy of TestForm
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ FormBuilderTest.php, line 934 - Contains \Drupal\Tests\Core\Form\FormBuilderTest.
Namespace
Drupal\Tests\Core\FormView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TestForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
1 |
TestForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
TestForm:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
TestForm:: |
public | function |
Form validation handler. Overrides FormInterface:: |