You are here

public function Currency::__construct in Price 2.0.x

Same name and namespace in other branches
  1. 2.x src/Plugin/views/filter/Currency.php \Drupal\price\Plugin\views\filter\Currency::__construct()

Constructs a new Currency 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\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

Overrides HandlerBase::__construct

File

src/Plugin/views/filter/Currency.php, line 35

Class

Currency
Filter by currency.

Namespace

Drupal\price\Plugin\views\filter

Code

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