interface EntityViewsDataInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/EntityViewsDataInterface.php \Drupal\views\EntityViewsDataInterface
Provides an interface to integrate an entity type with views.
Hierarchy
- interface \Drupal\views\EntityViewsDataInterface
Expanded class hierarchy of EntityViewsDataInterface
All classes that implement EntityViewsDataInterface
File
- core/
modules/ views/ src/ EntityViewsDataInterface.php, line 15 - Contains \Drupal\views\EntityViewsDataInterface.
Namespace
Drupal\viewsView source
interface EntityViewsDataInterface {
/**
* Returns views data for the entity type.
*
* @return array
* Views data in the format of hook_views_data().
*/
public function getViewsData();
/**
* Gets the table of an entity type to be used as base table in views.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type.
*
* @return string
* The name of the base table in views.
*/
public function getViewsTableForEntityType(EntityTypeInterface $entity_type);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityViewsDataInterface:: |
public | function | Returns views data for the entity type. | 1 |
EntityViewsDataInterface:: |
public | function | Gets the table of an entity type to be used as base table in views. | 1 |