You are here

public function ActionLinkTypeBase::buildConfigurationForm in Flag 8.4

Provides a form array for the action link plugin's settings form.

Derived classes will want to override this method.

Parameters

array $form: The form array.

FormStateInterface $form_state: The form state.

Return value

array The modified form array.

Overrides PluginFormInterface::buildConfigurationForm

1 call to ActionLinkTypeBase::buildConfigurationForm()
FormEntryTypeBase::buildConfigurationForm in src/Plugin/ActionLink/FormEntryTypeBase.php
Provides a form array for the action link plugin's settings form.
1 method overrides ActionLinkTypeBase::buildConfigurationForm()
FormEntryTypeBase::buildConfigurationForm in src/Plugin/ActionLink/FormEntryTypeBase.php
Provides a form array for the action link plugin's settings form.

File

src/ActionLink/ActionLinkTypeBase.php, line 180

Class

ActionLinkTypeBase
Provides a base class for all link types.

Namespace

Drupal\flag\ActionLink

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  return $form;
}