You are here

public function DependentFacetProcessor::__construct in Facets 8

Constructs a new 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.

\Drupal\facets\FacetManager\DefaultFacetManager $facets_manager: The language manager.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

Overrides PluginBase::__construct

File

src/Plugin/facets/processor/DependentFacetProcessor.php, line 56

Class

DependentFacetProcessor
Provides a processor that makes a facet depend on the state of another facet.

Namespace

Drupal\facets\Plugin\facets\processor

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, DefaultFacetManager $facets_manager, EntityTypeManagerInterface $entity_type_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->facetsManager = $facets_manager;
  $this->facetStorage = $entity_type_manager
    ->getStorage('facets_facet');
}