Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subception
/
wp-content
/
plugins
/
woocommerce
/
src
/
Enums
:
ProductType.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare( strict_types = 1 ); namespace Automattic\WooCommerce\Enums; /** * Enum class for all the product types. */ 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'; }