class FormTestResponseForm

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/form_test/src/Form/FormTestResponseForm.php \Drupal\form_test\Form\FormTestResponseForm

Form constructor for testing #type 'url' elements.

@internal

Hierarchy

Expanded class hierarchy of FormTestResponseForm

1 string reference to 'FormTestResponseForm'
form_test.routing.yml in core/modules/system/tests/modules/form_test/form_test.routing.yml
core/modules/system/tests/modules/form_test/form_test.routing.yml

File

core/modules/system/tests/modules/form_test/src/Form/FormTestResponseForm.php, line 14

Namespace

Drupal\form_test\Form
View source
class FormTestResponseForm extends FormBase {
  
  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'form_test_response';
  }
  
  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['content'] = [
      '#type' => 'textfield',
      '#title' => 'Content',
    ];
    $form['status'] = [
      '#type' => 'textfield',
      '#title' => 'Status',
      '#default_value' => 200,
    ];
    $form['submit'] = [
      '#type' => 'submit',
      '#value' => 'Submit',
    ];
    return $form;
  }
  
  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $values = $form_state->getValues();
    $form_state->setResponse(new JsonResponse($values['content'], (int) $values['status']));
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.