HeartbeatViewsData.php 412 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\heartbeat\Entity;
  3. use Drupal\views\EntityViewsData;
  4. /**
  5. * Provides Views data for Heartbeat entities.
  6. */
  7. class HeartbeatViewsData extends EntityViewsData {
  8. /**
  9. * {@inheritdoc}
  10. */
  11. public function getViewsData() {
  12. $data = parent::getViewsData();
  13. // Additional information for Views integration, such as table joins, can be
  14. // put here.
  15. return $data;
  16. }
  17. }