You are here

LazyResponsiveImageFormatter.php in Lazy-load 8.3

File

src/Plugin/Field/FieldFormatter/LazyResponsiveImageFormatter.php
View source
<?php

namespace Drupal\lazy\Plugin\Field\FieldFormatter;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\responsive_image\Plugin\Field\FieldFormatter\ResponsiveImageFormatter;

/**
 * Plugin implementation of the 'lazy_responsive_image' formatter.
 *
 * @FieldFormatter(
 *   id = "lazy_responsive_image",
 *   label = @Translation("Responsive image (Lazy-load)"),
 *   field_types = {
 *     "image"
 *   }
 * )
 */
class LazyResponsiveImageFormatter extends ResponsiveImageFormatter {

  /**
   * {@inheritdoc}
   */
  public function viewElements(FieldItemListInterface $items, $langcode) {
    $elements = parent::viewElements($items, $langcode);
    foreach ($elements as $delta => $element) {
      $elements[$delta]['#item_attributes']['data-lazy'] = TRUE;
    }
    return $elements;
  }

  /**
   * {@inheritdoc}
   */
  public function calculateDependencies() {
    $dependencies = parent::calculateDependencies();
    $dependencies['module'][] = 'responsive_image';
    $dependencies['config'][] = 'lazy.settings';
    return $dependencies;
  }

}

Classes

Namesort descending Description
LazyResponsiveImageFormatter Plugin implementation of the 'lazy_responsive_image' formatter.