You are here

BlazyViewsFieldFile.php in Blazy 8.2

File

src/Plugin/views/field/BlazyViewsFieldFile.php
View source
<?php

namespace Drupal\blazy\Plugin\views\field;

use Drupal\views\ResultRow;

/**
 * Defines a custom field that renders a preview of a file.
 *
 * @ViewsField("blazy_file")
 */
class BlazyViewsFieldFile extends BlazyViewsFieldPluginBase {

  /**
   * {@inheritdoc}
   */
  public function render(ResultRow $values) {

    /** @var \Drupal\file\Entity\File $entity */
    $entity = $values->_entity;
    $settings = $this
      ->mergedViewsSettings();
    $settings['delta'] = $values->index;
    $settings['entity_id'] = $entity
      ->id();
    $settings['bundle'] = $entity
      ->bundle();
    $settings['entity_type_id'] = $entity
      ->getEntityTypeId();
    $data = $this->blazyEntity
      ->oembed()
      ->getImageItem($entity);
    $data['settings'] = isset($data['settings']) ? array_merge($settings, $data['settings']) : $settings;
    $this->mergedSettings = $data['settings'];

    // Pass results to \Drupal\blazy\BlazyEntity.
    return $this->blazyEntity
      ->build($data, $entity, $entity
      ->getFilename());
  }

  /**
   * Defines the scope for the form elements.
   */
  public function getScopedFormElements() {
    return [
      'multimedia' => TRUE,
      'view_mode' => 'default',
    ] + parent::getScopedFormElements();
  }

}

Classes

Namesort descending Description
BlazyViewsFieldFile Defines a custom field that renders a preview of a file.