FormTestUrlForm.php in Drupal 9
File
core/modules/system/tests/modules/form_test/src/Form/FormTestUrlForm.php
View source
<?php
namespace Drupal\form_test\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
class FormTestUrlForm extends FormBase {
public function getFormId() {
return 'form_test_url';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form['url'] = [
'#type' => 'url',
'#title' => 'Optional URL',
'#description' => 'An optional URL field.',
];
$form['url_required'] = [
'#type' => 'url',
'#title' => 'Required URL',
'#description' => 'A required URL field.',
'#required' => TRUE,
];
$form['submit'] = [
'#type' => 'submit',
'#value' => 'Submit',
];
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$form_state
->setResponse(new JsonResponse($form_state
->getValues()));
}
}