You are here

public function FeedbackMessageSettingsForm::buildForm in Feedback 3.x

Defines the settings form for Feedback message entities.

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 Form definition array.

Overrides FormInterface::buildForm

File

src/Form/FeedbackMessageSettingsForm.php, line 50

Class

FeedbackMessageSettingsForm
Class FeedbackMessageSettingsForm.

Namespace

Drupal\feedback\Form

Code

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