FormTestValidateRequiredNoTitleForm.php
Same filename in other branches
Namespace
Drupal\form_test\FormFile
-
core/
modules/ system/ tests/ modules/ form_test/ src/ Form/ FormTestValidateRequiredNoTitleForm.php
View source
<?php
namespace Drupal\form_test\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Form constructor to test the #required property without #title.
*
* @internal
*/
class FormTestValidateRequiredNoTitleForm extends FormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'form_test_validate_required_form_no_title';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['textfield'] = [
'#type' => 'textfield',
'#required' => TRUE,
];
$form['actions'] = [
'#type' => 'actions',
];
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => 'Submit',
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->messenger()
->addStatus('The form_test_validate_required_form_no_title form was submitted successfully.');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FormTestValidateRequiredNoTitleForm | Form constructor to test the #required property without #title. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.