You are here

public function OrderOtherCount::__construct in Commerce add to cart confirmation 1.x

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

Overrides HandlerBase::__construct

File

src/Plugin/views/area/OrderOtherCount.php, line 49

Class

OrderOtherCount
Defines an order total area handler.

Namespace

Drupal\commerce_add_to_cart_confirmation\Plugin\views\area

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->orderStorage = $entity_type_manager
    ->getStorage('commerce_order');
  $this->orderItemStorage = $entity_type_manager
    ->getStorage('commerce_order_item');
}