public function MagnificPopup::settingsForm in Magnific Popup 8
Same name and namespace in other branches
- 8.2 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 40
Class
- MagnificPopup
- Magnific Popup field formatter.
Namespace
Drupal\magnific_popup\Plugin\Field\FieldFormatterCode
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(),
];
$form['vertical_fit'] = [
'#title' => $this
->t('Vertical Fit'),
'#type' => 'select',
'#default_value' => $this
->getSetting('vertical_fit'),
'#options' => $this
->getVerticalFit(),
];
return $form;
}