public function AutoImageStyleResponsive::settingsForm in Auto image style 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 ResponsiveImageFormatter::settingsForm
File
- src/
Plugin/ Field/ FieldFormatter/ AutoImageStyleResponsive.php, line 35
Class
- AutoImageStyleResponsive
- Plugin annotation @FieldFormatter( id = "auto_image_style_responsive", label = @Translation("Responsive image auto orientation"), description = @Translation("Display responsive image fields as portrait or landscape style"), field_types = { …
Namespace
Drupal\auto_image_style\Plugin\Field\FieldFormatterCode
public function settingsForm(array $form, FormStateInterface $form_state) {
$responsive_image_options = [];
$responsive_image_styles = $this->responsiveImageStyleStorage
->loadMultiple();
if ($responsive_image_styles && !empty($responsive_image_styles)) {
foreach ($responsive_image_styles as $machine_name => $responsive_image_style) {
if ($responsive_image_style
->hasImageStyleMappings()) {
$responsive_image_options[$machine_name] = $responsive_image_style
->label();
}
}
}
$elements['responsive_image_style_landscape'] = [
'#type' => 'select',
'#title' => $this
->t('Responsive landscape image style'),
'#options' => $responsive_image_options,
'#empty_option' => $this
->t('None (original image)'),
'#default_value' => $this
->getSetting('responsive_image_style_landscape'),
'#description' => $this
->t('Select the responsive image style for landscape images'),
];
$elements['responsive_image_style_portrait'] = [
'#type' => 'select',
'#title' => $this
->t('Responsive portrait image style'),
'#options' => $responsive_image_options,
'#empty_option' => $this
->t('None (original image)'),
'#default_value' => $this
->getSetting('responsive_image_style_portrait'),
'#description' => $this
->t('Select the responsive image style for portrait images'),
];
return $elements;
}