wwaf-8.x-1.0-beta5/src/Entity/WwafViewsData.php
src/Entity/WwafViewsData.php
<?php
namespace Drupal\wwaf\Entity;
use Drupal\views\EntityViewsData;
/**
* Provides Views data for Where We Are Finder entities.
*/
class WwafViewsData extends EntityViewsData {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
// Additional information for Views integration, such as table joins, can be
// put here.
return $data;
}
}
