You are here

public function EventViewsData::getViewsData in Event 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/EventViewsData.php, line 15

Class

EventViewsData
Provides Views data for Event entities.

Namespace

Drupal\event\Entity

Code

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

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