public function FormAssemblyEntityViewsData::getViewsData in FormAssembly 8
Returns views data for the entity type.
Return value
array Views data in the format of hook_views_data().
Overrides EntityViewsData::getViewsData
File
- src/
Entity/ FormAssemblyEntityViewsData.php, line 26
Class
- FormAssemblyEntityViewsData
- Provides Views data for FormAssembly Form entities.
Namespace
Drupal\formassembly\EntityCode
public function getViewsData() {
$data = parent::getViewsData();
// Additional information for Views integration, such as table joins, can be
// put here.
return $data;
}