You are here

public function BundleItemSelection::__construct in Commerce Product Bundle 8

Constructs a TypedData object given its definition and context.

Parameters

\Drupal\Core\TypedData\DataDefinitionInterface $definition: The data definition.

string $name: (optional) The name of the created property, or NULL if it is the root of a typed data tree. Defaults to NULL.

\Drupal\Core\TypedData\TypedDataInterface $parent: (optional) The parent object of the data property, or NULL if it is the root of a typed data tree. Defaults to NULL.

Overrides FieldItemBase::__construct

See also

\Drupal\Core\TypedData\TypedDataManager::create()

File

src/Plugin/Field/FieldType/BundleItemSelection.php, line 42

Class

BundleItemSelection
Plugin implementation of the 'commerce_product_bundle_item_selection' field type.

Namespace

Drupal\commerce_product_bundle\Plugin\Field\FieldType

Code

public function __construct(DataDefinitionInterface $definition, $name = NULL, TypedDataInterface $parent = NULL) {
  parent::__construct($definition, $name, $parent);
  $this->variationStorage = \Drupal::service('entity_type.manager')
    ->getStorage('commerce_product_variation');
  $this->bundleItemStorage = \Drupal::service('entity_type.manager')
    ->getStorage('commerce_product_bundle_i');
}