You are here

BundleItemOrderItemViewsData.php in Commerce Product Bundle 8

File

src/Entity/BundleItemOrderItemViewsData.php
View source
<?php

namespace Drupal\commerce_product_bundle\Entity;

use Drupal\views\EntityViewsData;

/**
 * Provides Views data for Bundle Item Order Item entities.
 */
class BundleItemOrderItemViewsData 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
BundleItemOrderItemViewsData Provides Views data for Bundle Item Order Item entities.