You are here

public function RoleWatchdogViewsData::getViewsData in Role Watchdog 8

Returns views data for the entity type.

Return value

array Views data in the format of hook_views_data().

Overrides EntityViewsData::getViewsData

File

src/Entity/RoleWatchdogViewsData.php, line 15

Class

RoleWatchdogViewsData
Provides Views data for Role Watchdog entities.

Namespace

Drupal\role_watchdog\Entity

Code

public function getViewsData() {
  $data = parent::getViewsData();

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