at path:
ROOT
/
wp-content
/
plugins
/
woocommerce
/
src
/
Enums
/
ProductType.php
run:
R
W
Run
CatalogVisibility.php
616 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
FeaturePluginCompatibility.php
796 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
OrderInternalStatus.php
947 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
OrderStatus.php
2.19 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
PaymentGatewayFeature.php
3.03 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductStatus.php
881 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductStockStatus.php
583 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductTaxStatus.php
533 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductType.php
633 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
error_log
up
📄
ProductType.php
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'; }