commerce_product_bundle-8.x-1.x-dev/src/Entity/ProductBundleViewsData.php
src/Entity/ProductBundleViewsData.php
<?php
namespace Drupal\commerce_product_bundle\Entity;
use Drupal\views\EntityViewsData;
use Drupal\views\EntityViewsDataInterface;
/**
* Provides Views data for product bundle entities.
*/
class ProductBundleViewsData extends EntityViewsData implements EntityViewsDataInterface {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
$data['commerce_product_bundle']['table']['base'] = [
'field' => 'id',
'title' => $this->t('Product bundle'),
'help' => $this->t('The product bundle ID.'),
];
return $data;
}
}
