You are here

GatsbyLogEntityViewsData.php in Gatsby Live Preview & Incremental Builds 2.0.x

Same filename and directory in other branches
  1. 8 modules/gatsby_fastbuilds/src/Entity/GatsbyLogEntityViewsData.php

File

modules/gatsby_fastbuilds/src/Entity/GatsbyLogEntityViewsData.php
View source
<?php

namespace Drupal\gatsby_fastbuilds\Entity;

use Drupal\views\EntityViewsData;

/**
 * Provides Views data for Gatsby log entity entities.
 */
class GatsbyLogEntityViewsData 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
GatsbyLogEntityViewsData Provides Views data for Gatsby log entity entities.