You are here

public function SvgImageUrlFormatter::viewElements in Svg Image 2.x

Same name and namespace in other branches
  1. 8 src/Plugin/Field/FieldFormatter/SvgImageUrlFormatter.php \Drupal\svg_image\Plugin\Field\FieldFormatter\SvgImageUrlFormatter::viewElements()

Builds a renderable array for a field value.

Parameters

\Drupal\Core\Field\FieldItemListInterface $items: The field values to be rendered.

string $langcode: The language that should be used to render the field.

Return value

array A renderable array for $items, as an array of child elements keyed by consecutive numeric indexes starting from 0.

Overrides ImageUrlFormatter::viewElements

File

src/Plugin/Field/FieldFormatter/SvgImageUrlFormatter.php, line 27

Class

SvgImageUrlFormatter
Plugin implementation of the 'image_url' formatter.

Namespace

Drupal\svg_image\Plugin\Field\FieldFormatter

Code

public function viewElements(FieldItemListInterface $items, $langcode) {
  $elements = [];

  /** @var \Drupal\Core\Field\EntityReferenceFieldItemListInterface $items */
  if (empty($images = $this
    ->getEntitiesToView($items, $langcode))) {

    // Early opt-out if the field is empty.
    return $elements;
  }

  /** @var \Drupal\image\ImageStyleInterface $image_style */
  $image_style = $this->imageStyleStorage
    ->load($this
    ->getSetting('image_style'));

  /** @var \Drupal\file\FileInterface[] $images */
  foreach ($images as $delta => $image) {
    $image_uri = $image
      ->getFileUri();
    $isSvg = svg_image_is_file_svg($image);
    $url = $image_style && !$isSvg ? $image_style
      ->buildUrl($image_uri) : file_create_url($image_uri);
    $url = file_url_transform_relative($url);

    // Add cacheability metadata from the image and image style.
    $cacheability = CacheableMetadata::createFromObject($image);
    if ($image_style) {
      $cacheability
        ->addCacheableDependency(CacheableMetadata::createFromObject($image_style));
    }
    $elements[$delta] = [
      '#markup' => $url,
    ];
    $cacheability
      ->applyTo($elements[$delta]);
  }
  return $elements;
}