You are here

StockLocationViewsData.php in Commerce Stock 8

File

modules/local_storage/src/StockLocationViewsData.php
View source
<?php

namespace Drupal\commerce_stock_local;

use Drupal\commerce\CommerceEntityViewsData;

/**
 * Provides Views data for Stock Location entities.
 */
class StockLocationViewsData extends CommerceEntityViewsData {

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

    // @todo join related tables.
    return $data;
  }

}

Classes

Namesort descending Description
StockLocationViewsData Provides Views data for Stock Location entities.