You are here

public function ExtraFieldComponent::settingsForm in Flexiform 8

Get the settings form.

Parameters

array $form: The form array.

\Drupal\Core\Form\FormStateInterface $form_state: The form state.

Overrides FormComponentBase::settingsForm

File

src/Plugin/FormComponentType/ExtraFieldComponent.php, line 45

Class

ExtraFieldComponent
Component class for extra fields.

Namespace

Drupal\flexiform\Plugin\FormComponentType

Code

public function settingsForm(array $form, FormStateInterface $form_state) {

  // Do nothing; extra fields do not have settings.
  return [];
}