You are here

protected function TaxonomyEntityIndexTidDepth::convertIdsToEntityIds in Taxonomy Entity Index 8

Converts the provided IDs to taxonomy term entity IDs.

Parameters

mixed $ids: Either the list of provided IDs or a single item.

Return value

array The list of taxonomy term entity IDs.

Overrides TaxonomyEntityIndexDepth::convertIdsToEntityIds

File

src/Plugin/views/argument/TaxonomyEntityIndexTidDepth.php, line 17

Class

TaxonomyEntityIndexTidDepth
Argument handler for entity taxonomy terms with depth, using the entity ID.

Namespace

Drupal\taxonomy_entity_index\Plugin\views\argument

Code

protected function convertIdsToEntityIds($ids) {

  // The IDs provided should already be entity IDs.
  return $ids;
}