public function FormTestControllerObject::buildForm in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/form_test/src/FormTestControllerObject.php \Drupal\form_test\FormTestControllerObject::buildForm()
- 9 core/modules/system/tests/modules/form_test/src/FormTestControllerObject.php \Drupal\form_test\FormTestControllerObject::buildForm()
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides ConfigFormBase::buildForm
File
- core/
modules/ system/ tests/ modules/ form_test/ src/ FormTestControllerObject.php, line 44
Class
- FormTestControllerObject
- Provides a test form object.
Namespace
Drupal\form_testCode
public function buildForm(array $form, FormStateInterface $form_state, Request $request = NULL, $custom_attributes = NULL) {
$form['element'] = [
'#markup' => 'The FormTestControllerObject::buildForm() method was used for this form.',
];
$form['custom_attribute']['#markup'] = $custom_attributes;
$form['request_attribute']['#markup'] = $request->attributes
->get('request_attribute');
$form['bananas'] = [
'#type' => 'textfield',
'#title' => $this
->t('Bananas'),
];
$form['actions']['#type'] = 'actions';
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Save'),
];
return $form;
}