You are here

public function KanbanLogViewsData::getViewsData in Content Planner 8

Returns views data for the entity type.

Return value

array Views data in the format of hook_views_data().

Overrides EntityViewsData::getViewsData

File

modules/content_kanban/src/Entity/KanbanLogViewsData.php, line 15

Class

KanbanLogViewsData
Provides Views data for Kanban Log entities.

Namespace

Drupal\content_kanban\Entity

Code

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

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