You are here

public function SocialLinkBaseFormatter::settingsForm in Social Link Field 8

Returns a form to configure settings for the formatter.

Invoked from \Drupal\field_ui\Form\EntityDisplayFormBase to allow administrators to configure the formatter. The field_ui module takes care of handling submitted form values.

Parameters

array $form: The form where the settings form is being included in.

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

Return value

array The form elements for the formatter settings.

Overrides FormatterBase::settingsForm

2 calls to SocialLinkBaseFormatter::settingsForm()
SocialLinkFontAwesomeFormatter::settingsForm in src/Plugin/Field/FieldFormatter/SocialLinkFontAwesomeFormatter.php
Returns a form to configure settings for the formatter.
SocialLinkNetworkNameFormatter::settingsForm in src/Plugin/Field/FieldFormatter/SocialLinkNetworkNameFormatter.php
Returns a form to configure settings for the formatter.
2 methods override SocialLinkBaseFormatter::settingsForm()
SocialLinkFontAwesomeFormatter::settingsForm in src/Plugin/Field/FieldFormatter/SocialLinkFontAwesomeFormatter.php
Returns a form to configure settings for the formatter.
SocialLinkNetworkNameFormatter::settingsForm in src/Plugin/Field/FieldFormatter/SocialLinkNetworkNameFormatter.php
Returns a form to configure settings for the formatter.

File

src/Plugin/Field/FieldFormatter/SocialLinkBaseFormatter.php, line 68

Class

SocialLinkBaseFormatter
Base class for 'Field formatter' plugin implementations.

Namespace

Drupal\social_link_field\Plugin\Field\FieldFormatter

Code

public function settingsForm(array $form, FormStateInterface $form_state) {
  $element['new_tab'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Open link in new tab'),
    '#default_value' => $this
      ->getSetting('new_tab'),
  ];
  return $element;
}