You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
378 B
18 lines
378 B
<?php |
|
|
|
/** |
|
* @file |
|
* Views customizations for Islandora. |
|
*/ |
|
|
|
/** |
|
* Implements hook_views_data_alter(). |
|
*/ |
|
function islandora_views_helpers_views_data_alter(array &$data): void { |
|
$table = 'node__field_member_of'; |
|
$field = 'field_member_of_target_id'; |
|
|
|
if (isset($data[$table][$field]['filter'])) { |
|
$data[$table][$field]['filter']['id'] = 'entity_reference'; |
|
} |
|
}
|
|
|