You are here

public function KanbanLogSettingsForm::buildForm in Content Planner 8

Defines the settings form for Kanban Log 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/content_kanban/src/Form/KanbanLogSettingsForm.php, line 48

Class

KanbanLogSettingsForm
Class KanbanLogSettingsForm.

Namespace

Drupal\content_kanban\Form

Code

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