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