You are here

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

Defines the settings form for Board 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_board/src/Form/BoardSettingsForm.php, line 48

Class

BoardSettingsForm
Form to administer Board settings.

Namespace

Drupal\pm_board\Form

Code

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