You are here

public function TaxonomyEntityIndexUuidDepth::__construct in Taxonomy Entity Index 8

Constructs a Handler object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides TaxonomyEntityIndexDepth::__construct

File

src/Plugin/views/argument/TaxonomyEntityIndexUuidDepth.php, line 30

Class

TaxonomyEntityIndexUuidDepth
Argument handler for entity taxonomy terms with depth, using the UUID.

Namespace

Drupal\taxonomy_entity_index\Plugin\views\argument

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityStorageInterface $termStorage, Connection $database, EntityRepositoryInterface $entityRepository) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $termStorage, $database);
  $this->entityRepository = $entityRepository;
}