SessionTestForm.php in Drupal 10
File
core/modules/system/tests/modules/session_test/src/Form/SessionTestForm.php
View source
<?php
namespace Drupal\session_test\Form;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
class SessionTestForm extends FormBase {
public function getFormId() {
return 'session_test_form';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form['input'] = [
'#type' => 'textfield',
'#title' => 'Input',
'#required' => TRUE,
];
$form['actions'] = [
'#type' => 'actions',
];
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => 'Save',
];
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this
->messenger()
->addStatus(new FormattableMarkup('Ok: @input', [
'@input' => $form_state
->getValue('input'),
]));
}
}