public function TaxonomyEntityIndexDepth::__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 IndexTidDepth::__construct
1 call to TaxonomyEntityIndexDepth::__construct()
- TaxonomyEntityIndexUuidDepth::__construct in src/
Plugin/ views/ argument/ TaxonomyEntityIndexUuidDepth.php - Constructs a Handler object.
1 method overrides TaxonomyEntityIndexDepth::__construct()
- TaxonomyEntityIndexUuidDepth::__construct in src/
Plugin/ views/ argument/ TaxonomyEntityIndexUuidDepth.php - Constructs a Handler object.
File
- src/
Plugin/ views/ argument/ TaxonomyEntityIndexDepth.php, line 57
Class
- TaxonomyEntityIndexDepth
- Abstract argument handler for entity taxonomy terms with depth.
Namespace
Drupal\taxonomy_entity_index\Plugin\views\argumentCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityStorageInterface $termStorage, Connection $database) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $termStorage);
$this->database = $database;
}