You are here

public function MagnificPopup::settingsForm in Magnific Popup 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Field/FieldFormatter/MagnificPopup.php \Drupal\magnific_popup\Plugin\Field\FieldFormatter\MagnificPopup::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/MagnificPopup.php, line 39

Class

MagnificPopup
Magnific Popup field formatter.

Namespace

Drupal\magnific_popup\Plugin\Field\FieldFormatter

Code

public function settingsForm(array $form, FormStateInterface $form_state) {
  $form = parent::settingsForm($form, $form_state);
  $image_styles = image_style_options(FALSE);
  $form['thumbnail_image_style'] = [
    '#title' => $this
      ->t('Thumbnail Image Style'),
    '#type' => 'select',
    '#default_value' => $this
      ->getSetting('thumbnail_image_style'),
    '#empty_option' => $this
      ->t('None (original image)'),
    '#options' => $image_styles,
  ];
  $form['popup_image_style'] = [
    '#title' => $this
      ->t('Popup Image Style'),
    '#type' => 'select',
    '#default_value' => $this
      ->getSetting('popup_image_style'),
    '#empty_option' => $this
      ->t('None (original image)'),
    '#options' => $image_styles,
  ];
  $form['gallery_type'] = [
    '#title' => $this
      ->t('Gallery Type'),
    '#type' => 'select',
    '#default_value' => $this
      ->getSetting('gallery_type'),
    '#options' => $this
      ->getGalleryTypes(),
  ];
  return $form;
}