You are here

public function MessageViewsData::getViewsData in Message 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/MessageViewsData.php, line 16

Class

MessageViewsData
Provides the views data for the message entity type.

Namespace

Drupal\message

Code

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