You are here

public function IndexTidDepth::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php \Drupal\taxonomy\Plugin\views\argument\IndexTidDepth::__construct()
  2. 9 core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php \Drupal\taxonomy\Plugin\views\argument\IndexTidDepth::__construct()

File

core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php, line 33

Class

IndexTidDepth
Argument handler for taxonomy terms with depth.

Namespace

Drupal\taxonomy\Plugin\views\argument

Code

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