You are here

public function SkypeUriFormatter::settingsForm in Skype 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

File

src/Plugin/Field/FieldFormatter/SkypeUriFormatter.php, line 35

Class

SkypeUriFormatter
Plugin implementation of the 'skype_button' formatter.

Namespace

Drupal\skype\Plugin\Field\FieldFormatter

Code

public function settingsForm(array $form, FormStateInterface $form_state) {
  $elements['action'] = [
    '#type' => 'radios',
    '#title' => t('Choose what you\'d like your URI to do:'),
    '#options' => [
      'call' => t('Call'),
      'video' => t('Video chat'),
      'chat' => t('Chat'),
    ],
    '#default_value' => $this
      ->getSetting('action'),
    '#required' => TRUE,
  ];
  $elements['link_text'] = [
    '#type' => 'textfield',
    '#title' => t('Choose the link text:'),
    '#default_value' => $this
      ->getSetting('link_text'),
    '#required' => TRUE,
    '#description' => t('For example: "Call me" or "Video chat with me". You can use [skype:id] as token to use in your link text.'),
  ];
  return $elements;
}