You are here

public function ContributorViewsData::getViewsData in Bibliography & Citation 2.0.x

Same name and namespace in other branches
  1. 8 modules/bibcite_entity/src/ContributorViewsData.php \Drupal\bibcite_entity\ContributorViewsData::getViewsData()

Returns views data for the entity type.

Return value

array Views data in the format of hook_views_data().

Overrides EntityViewsData::getViewsData

File

modules/bibcite_entity/src/ContributorViewsData.php, line 16

Class

ContributorViewsData
Provides the views data for the Contributor entity type.

Namespace

Drupal\bibcite_entity

Code

public function getViewsData() {
  $data = parent::getViewsData();
  $data['bibcite_contributor']['id']['argument'] = [
    'id' => 'bibcite_contributor',
    'name field' => 'name',
    'numeric' => TRUE,
  ];

  // @todo Use $this->entityTypeManager only, once Drupal 8.9.0 is released.
  $entity_manager = isset($this->entityTypeManager) ? $this->entityTypeManager : $this->entityManager;
  $entity_type = $entity_manager
    ->getDefinition('bibcite_reference');
  $data[$this->entityType
    ->getBaseTable()] += [
    'name' => [
      'title' => $this
        ->t('Full name'),
      'label' => 'Name',
      'field' => [
        'id' => 'field',
        'default_formatter' => 'string',
        'field_name' => 'name',
      ],
      'help' => $this
        ->t('Formatted contributor name using pattern configured at contributor settings page.'),
    ],
    'reverse__' . $entity_type
      ->id() . '__' . $this->entityType
      ->id() => [
      'relationship' => [
        'title' => $this
          ->t('Reference using contributors'),
        'label' => $entity_type
          ->getLabel(),
        'group' => $this->entityType
          ->getLabel(),
        'id' => 'entity_reverse',
        'base' => $entity_type
          ->getDataTable() ?: $entity_type
          ->getBaseTable(),
        'entity_type' => $entity_type
          ->id(),
        'base field' => $entity_type
          ->getKey('id'),
        'field_name' => 'author',
        'field table' => 'bibcite_reference__author',
        'field field' => 'author_target_id',
        'join_extra' => [
          [
            'field' => 'deleted',
            'value' => 0,
            'numeric' => TRUE,
          ],
        ],
      ],
    ],
  ];
  return $data;
}