You are here

ProjectViewsData.php in Drupal PM (Project Management) 4.x

File

modules/pm_project/src/Entity/ProjectViewsData.php
View source
<?php

namespace Drupal\pm_project\Entity;

use Drupal\views\EntityViewsData;

/**
 * Provides Views data for Project entities.
 */
class ProjectViewsData extends EntityViewsData {

  /**
   * {@inheritdoc}
   */
  public function getViewsData() {
    $data = parent::getViewsData();

    // Additional information for Views integration, such as table joins, can be
    // put here.
    return $data;
  }

}

Classes

Namesort descending Description
ProjectViewsData Provides Views data for Project entities.