You are here

public function VideoEmbedField::settingsForm in Magnific Popup 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Field/FieldFormatter/VideoEmbedField.php \Drupal\magnific_popup\Plugin\Field\FieldFormatter\VideoEmbedField::settingsForm()

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/VideoEmbedField.php, line 114

Class

VideoEmbedField
Magnific Popup FieldFormatter for Video Embed Field.

Namespace

Drupal\magnific_popup\Plugin\Field\FieldFormatter

Code

public function settingsForm(array $form, FormStateInterface $form_state) {
  $form = [
    'gallery_type' => [
      '#title' => $this
        ->t('Gallery Type'),
      '#type' => 'select',
      '#default_value' => $this
        ->getSetting('gallery_type'),
      '#options' => $this
        ->getGalleryTypes(),
    ],
  ];
  return $form + parent::settingsForm($form, $form_state);
}