You are here

public function TaxonomyImageTermReferenceImage::settingsSummary in Taxonomy Image 8

Returns a short summary for the current formatter settings.

If an empty result is returned, a UI can still be provided to display a settings form in case the formatter has configurable settings.

Return value

string[] A short summary of the formatter settings.

Overrides FormatterBase::settingsSummary

File

src/Plugin/Field/FieldFormatter/TaxonomyImageTermReferenceImage.php, line 65

Class

TaxonomyImageTermReferenceImage
Plugin implementation of the 'taxonomy_image_term_reference_image' formatter.

Namespace

Drupal\taxonomy_image\Plugin\Field\FieldFormatter

Code

public function settingsSummary() {
  $summary = array();
  $image_styles = image_style_options(FALSE);

  // Unset possible 'No defined styles' option.
  unset($image_styles['']);

  // Styles could be lost because of enabled/disabled modules that defines
  // their styles in code.
  $image_style_setting = $this
    ->getSetting('image_style');
  if (isset($image_styles[$image_style_setting])) {
    $summary[] = t('Image style: @style', array(
      '@style' => $image_styles[$image_style_setting],
    ));
  }
  else {
    $summary[] = t('Original image');
  }

  // Image link summary.
  $link_types = [
    'content' => t('Linked to content'),
    'file' => t('Linked to file'),
  ];

  // Display this setting only if image is linked.
  $image_link_setting = $this
    ->getSetting('image_link');
  if (isset($link_types[$image_link_setting])) {
    $summary[] = $link_types[$image_link_setting];
  }
  return $summary;
}