wotapi-8.x-1.x-dev/src/Entity/ThingViewsData.php
src/Entity/ThingViewsData.php
<?php
namespace Drupal\wotapi\Entity;
use Drupal\views\EntityViewsData;
/**
* Provides Views data for Thing entities.
*/
class ThingViewsData extends EntityViewsData {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
// Additional information for Views integration, such as table joins, can be
// put here.
return $data;
}
}
