You are here

MediaViewsData.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/media/src/MediaViewsData.php

Namespace

Drupal\media

File

core/modules/media/src/MediaViewsData.php
View source
<?php

namespace Drupal\media;

use Drupal\views\EntityViewsData;

/**
 * Provides the Views data for the media entity type.
 */
class MediaViewsData extends EntityViewsData {

  /**
   * {@inheritdoc}
   */
  public function getViewsData() {
    $data = parent::getViewsData();
    $data['media_field_data']['table']['wizard_id'] = 'media';
    $data['media_field_revision']['table']['wizard_id'] = 'media_revision';
    $data['media_field_data']['status_extra'] = [
      'title' => $this
        ->t('Published status or admin user'),
      'help' => $this
        ->t('Filters out unpublished media if the current user cannot view it.'),
      'filter' => [
        'field' => 'status',
        'id' => 'media_status',
        'label' => $this
          ->t('Published status or admin user'),
      ],
    ];
    return $data;
  }

}

Classes

Namesort descending Description
MediaViewsData Provides the Views data for the media entity type.