public function MaestroProcessSettingsForm::buildForm in Maestro 3.x
Same name and namespace in other branches
- 8.2 src/Form/MaestroProcessSettingsForm.php \Drupal\maestro\Form\MaestroProcessSettingsForm::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 FormInterface::buildForm
File
- src/
Form/ MaestroProcessSettingsForm.php, line 37
Class
- MaestroProcessSettingsForm
- Class MaestroProcessSettingsForm.
Namespace
Drupal\maestro\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['contact_settings']['#markup'] = 'Settings form for ContentEntityExample. Manage field settings here.';
return $form;
}