Automattic\WooCommerce\Enums
ProductType{}
Enum class for all the product types.
Хуков нет.
Использование
$ProductType = new ProductType(); // use class methods
Методы
Нет Методов у класса.Код ProductType{} ProductType{} WC 10.5.0
final class ProductType {
/**
* Simple product type.
*
* @var string
*/
public const SIMPLE = 'simple';
/**
* Variable product type.
*
* @var string
*/
public const VARIABLE = 'variable';
/**
* Grouped product type.
*
* @var string
*/
public const GROUPED = 'grouped';
/**
* External/Affiliate product type.
*
* @var string
*/
public const EXTERNAL = 'external';
/**
* Variation product type.
*
* @var string
*/
public const VARIATION = 'variation';
}