You are here

public function IssueSettingsForm::buildForm in Drupal PM (Project Management) 4.x

Defines the settings form for Issue 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

modules/pm_issue/src/Form/IssueSettingsForm.php, line 48

Class

IssueSettingsForm
Issue settings form.

Namespace

Drupal\pm_issue\Form

Code

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