You are here

public function FulfillmentMethodPluginBase::__construct in Ubercart 8.4

Constructs a \Drupal\Component\Plugin\PluginBase 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 PluginBase::__construct

File

shipping/uc_fulfillment/src/FulfillmentMethodPluginBase.php, line 16

Class

FulfillmentMethodPluginBase
Defines a base fulfillment method plugin implementation.

Namespace

Drupal\uc_fulfillment

Code

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