You are here

public function TaxonomyVocabulary::__construct in Context Breadcrumb 8

Creates a new TaxonomyVocabulary instance.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $entity_storage: The entity storage.

array $configuration: The plugin configuration, i.e. an array with configuration values keyed by configuration option name. The special key 'context' may be used to initialize the defined contexts by setting it to an array of context values keyed by context names.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides ConditionPluginBase::__construct

File

src/Plugin/Condition/TaxonomyVocabulary.php, line 47

Class

TaxonomyVocabulary
Provides a 'Taxonomy Vocabulary' condition.

Namespace

Drupal\context_breadcrumb\Plugin\Condition

Code

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