You are here

RoleWatchdogViewsData.php in Role Watchdog 8

File

src/Entity/RoleWatchdogViewsData.php
View source
<?php

namespace Drupal\role_watchdog\Entity;

use Drupal\views\EntityViewsData;

/**
 * Provides Views data for Role Watchdog entities.
 */
class RoleWatchdogViewsData extends EntityViewsData {

  /**
   * {@inheritdoc}
   */
  public function getViewsData() {
    $data = parent::getViewsData();

    // Additional information for Views integration, such as table joins, can be
    // put here.
    return $data;
  }

}

Classes

Namesort descending Description
RoleWatchdogViewsData Provides Views data for Role Watchdog entities.