You are here

public function LinkSettingsForm::buildForm in Colossal Menu 8

Same name and namespace in other branches
  1. 2.x src/Form/LinkSettingsForm.php \Drupal\colossal_menu\Form\LinkSettingsForm::buildForm()

Defines the settings form for Link 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/LinkSettingsForm.php, line 50

Class

LinkSettingsForm
Settings form for Link entities.

Namespace

Drupal\colossal_menu\Form

Code

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