You are here

public function ShippingQuoteMethodListBuilder::__construct in Ubercart 8.4

Constructs a new ShippingQuoteMethodListBuilder object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.

\Drupal\uc_quote\Plugin\ShippingQuotePluginManager $shipping_quote_plugin_manager: The shipping quote plugin manager.

Overrides DraggableListBuilder::__construct

File

shipping/uc_quote/src/ShippingQuoteMethodListBuilder.php, line 36

Class

ShippingQuoteMethodListBuilder
Provides a listing of shipping quote method entities.

Namespace

Drupal\uc_quote

Code

public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, ShippingQuotePluginManager $shipping_quote_plugin_manager) {
  parent::__construct($entity_type, $storage);
  $this->shippingQuotePluginManager = $shipping_quote_plugin_manager;
}