You are here

function group_views_data_alter in Group 2.0.x

Same name and namespace in other branches
  1. 8 group.views.inc \group_views_data_alter()

Implements hook_views_data_alter().

File

./group.views.inc, line 11
Contains Views hooks.

Code

function group_views_data_alter(array &$data) {
  $entity_type_manager = \Drupal::entityTypeManager();
  $entity_types = $entity_type_manager
    ->getDefinitions();

  // Get the data table for GroupContent entities.
  $data_table = $entity_types['group_content']
    ->getDataTable();

  /** @var \Drupal\group\Plugin\Group\Relation\GroupRelationManagerInterface $plugin_manager */
  $plugin_manager = \Drupal::service('plugin.manager.group_relation');

  // Add views data for all defined plugins so modules can provide default
  // views even though their plugins may not have been installed yet.
  foreach ($plugin_manager
    ->getAll() as $plugin) {
    $entity_type_id = $plugin
      ->getEntityTypeId();
    if (!isset($entity_types[$entity_type_id])) {
      continue;
    }
    $entity_type = $entity_types[$entity_type_id];
    $entity_data_table = $entity_type
      ->getDataTable() ?: $entity_type
      ->getBaseTable();

    // We only add one 'group_content' entry per entity type.
    if (isset($data[$entity_data_table]['group_content'])) {
      continue;
    }
    $t_args = [
      '@entity_type' => $entity_type
        ->getLabel(),
    ];

    // This relationship will allow a content entity to easily map to the group
    // content entity that ties it to a group, optionally filtering by plugin.
    $data[$entity_data_table]['group_content'] = [
      'title' => t('Group content for @entity_type', $t_args),
      'help' => t('Relates to the group content entities that represent the @entity_type.', $t_args),
      'relationship' => [
        'group' => t('Group content'),
        'base' => $data_table,
        'base field' => 'entity_id',
        'relationship field' => $entity_type
          ->getKey('id'),
        'id' => 'group_content_to_entity_reverse',
        'label' => t('@entity_type group content', $t_args),
      ],
    ];
  }
}