You are here

public function Product::__construct in Commerce Core 8.2

Constructs a new Product instance.

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\Routing\RouteMatchInterface $route_match: The route match.

Overrides PluginBase::__construct

File

modules/product/src/Plugin/views/argument_default/Product.php, line 41

Class

Product
Default argument plugin to extract a product.

Namespace

Drupal\commerce_product\Plugin\views\argument_default

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteMatchInterface $route_match) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->routeMatch = $route_match;
}