You are here

MediaName.php in Display Suite 8.4

Same filename and directory in other branches
  1. 8.3 src/Plugin/DsField/Media/MediaName.php

File

src/Plugin/DsField/Media/MediaName.php
View source
<?php

namespace Drupal\ds\Plugin\DsField\Media;

use Drupal\ds\Plugin\DsField\Title;

/**
 * Plugin that renders the title of a media item.
 *
 * @DsField(
 *   id = "media_name",
 *   title = @Translation("Name"),
 *   entity_type = "media",
 *   provider = "media"
 * )
 */
class MediaName extends Title {

  /**
   * {@inheritdoc}
   */
  public function entityRenderKey() {
    return 'name';
  }

}

Classes

Namesort descending Description
MediaName Plugin that renders the title of a media item.