You are here

public function CheckoutPanePluginBase::__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

1 call to CheckoutPanePluginBase::__construct()
PaymentMethodPane::__construct in payment/uc_payment/src/Plugin/Ubercart/CheckoutPane/PaymentMethodPane.php
Constructs a PaymentMethodPane object.
1 method overrides CheckoutPanePluginBase::__construct()
PaymentMethodPane::__construct in payment/uc_payment/src/Plugin/Ubercart/CheckoutPane/PaymentMethodPane.php
Constructs a PaymentMethodPane object.

File

uc_cart/src/CheckoutPanePluginBase.php, line 45

Class

CheckoutPanePluginBase
Defines a base checkout pane plugin implementation.

Namespace

Drupal\uc_cart

Code

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