You are here

public function OrderTotalSummary::__construct in Commerce Core 8.2

Same name in this branch
  1. 8.2 modules/order/src/OrderTotalSummary.php \Drupal\commerce_order\OrderTotalSummary::__construct()
  2. 8.2 modules/order/src/Plugin/Field/FieldFormatter/OrderTotalSummary.php \Drupal\commerce_order\Plugin\Field\FieldFormatter\OrderTotalSummary::__construct()

Constructs a new OrderTotalSummary object.

Parameters

string $plugin_id: The plugin_id for the formatter.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The definition of the field to which the formatter is associated.

array $settings: The formatter settings.

string $label: The formatter label display setting.

string $view_mode: The view mode.

array $third_party_settings: Any third party settings.

\Drupal\commerce_order\OrderTotalSummaryInterface $order_total_summary: The order total summary service.

Overrides FormatterBase::__construct

File

modules/order/src/Plugin/Field/FieldFormatter/OrderTotalSummary.php, line 52

Class

OrderTotalSummary
Plugin implementation of the 'commerce_order_total_summary' formatter.

Namespace

Drupal\commerce_order\Plugin\Field\FieldFormatter

Code

public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, OrderTotalSummaryInterface $order_total_summary) {
  parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
  $this->orderTotalSummary = $order_total_summary;
}