openlucius-2.0.0-alpha3/modules/entities/ol_file/src/Entity/OlFileViewsData.php
modules/entities/ol_file/src/Entity/OlFileViewsData.php
<?php
namespace Drupal\ol_file\Entity;
use Drupal\views\EntityViewsData;
/**
* Provides Views data for Ol file entities.
*/
class OlFileViewsData extends EntityViewsData {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
// Additional information for Views integration, such as table joins, can be
// put here.
return $data;
}
}
