ProductTypeInterface.php in Commerce Core 8.2
Namespace
Drupal\commerce_product\EntityFile
modules/product/src/Entity/ProductTypeInterface.phpView source
<?php
namespace Drupal\commerce_product\Entity;
use Drupal\commerce\Entity\CommerceBundleEntityInterface;
use Drupal\Core\Entity\EntityDescriptionInterface;
/**
* Defines the interface for product types.
*/
interface ProductTypeInterface extends CommerceBundleEntityInterface, EntityDescriptionInterface {
/**
* Gets the product type's matching variation type ID.
*
* @return string
* The variation type ID.
*/
public function getVariationTypeId();
/**
* Sets the product type's matching variation type ID.
*
* @param string $variation_type_id
* The variation type ID.
*
* @return $this
*/
public function setVariationTypeId($variation_type_id);
/**
* Gets whether products of this type can have multiple variations.
*
* @return bool
* TRUE if products of this type can have multiple variations,
* FALSE otherwise.
*/
public function allowsMultipleVariations();
/**
* Sets whether products of this type can have multiple variations.
*
* @param bool $multiple_variations
* Whether products of this type can have multiple variations.
*
* @return $this
*/
public function setMultipleVariations($multiple_variations);
/**
* Gets whether variation fields should be injected into the rendered product.
*
* @return bool
* TRUE if the variation fields should be injected into the rendered
* product, FALSE otherwise.
*/
public function shouldInjectVariationFields();
/**
* Sets whether variation fields should be injected into the rendered product.
*
* @param bool $inject
* Whether variation fields should be injected into the rendered product.
*
* @return $this
*/
public function setInjectVariationFields($inject);
}
Interfaces
Name | Description |
---|---|
ProductTypeInterface | Defines the interface for product types. |