You are here

public function MaestroProcessSettingsForm::buildForm in Maestro 8.2

Same name and namespace in other branches
  1. 3.x 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\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['contact_settings']['#markup'] = 'Settings form for ContentEntityExample. Manage field settings here.';
  return $form;
}