You are here

public function Taxonomy::__construct in Drupal 10

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

File

core/modules/taxonomy/src/Plugin/views/argument/Taxonomy.php, line 27

Class

Taxonomy
Argument handler for basic taxonomy tid.

Namespace

Drupal\taxonomy\Plugin\views\argument

Code

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