Added Bank Account entity.

This commit is contained in:
2021-02-07 11:59:17 +00:00
parent 0399c83646
commit eee7604440
15 changed files with 682 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace Drupal\opencase_entities\Entity;
use Drupal\views\EntityViewsData;
/**
* Provides Views data for Bank Account entities.
*/
class OCBankAccountViewsData extends EntityViewsData {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
// Additional information for Views integration, such as table joins, can be
// put here.
return $data;
}
}