You are here

public function EntityViewsData::getViewsTableForEntityType in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/EntityViewsData.php \Drupal\views\EntityViewsData::getViewsTableForEntityType()
  2. 9 core/modules/views/src/EntityViewsData.php \Drupal\views\EntityViewsData::getViewsTableForEntityType()

File

core/modules/views/src/EntityViewsData.php, line 704

Class

EntityViewsData
Provides generic views integration for entities.

Namespace

Drupal\views

Code

public function getViewsTableForEntityType(EntityTypeInterface $entity_type) {
  return $entity_type
    ->getDataTable() ?: $entity_type
    ->getBaseTable();
}