at path:
ROOT
/
wp-content
/
plugins
/
woocommerce
/
src
/
Enums
/
ProductStatus.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
📄
ProductStatus.php
Save
<?php declare( strict_types = 1 ); namespace Automattic\WooCommerce\Enums; /** * Enum class for all the product statuses. */ final class ProductStatus { /** * The product is in auto-draft status. * * @var string */ public const AUTO_DRAFT = 'auto-draft'; /** * The product is in draft status. * * @var string */ public const DRAFT = 'draft'; /** * The product is in pending status. * * @var string */ public const PENDING = 'pending'; /** * The product is in private status. * * @var string */ public const PRIVATE = 'private'; /** * The product is in publish status. * * @var string */ public const PUBLISH = 'publish'; /** * The product is in trash status. * * @var string */ public const TRASH = 'trash'; /** * The product is in future status. * * @var string */ public const FUTURE = 'future'; }