X7ROOT File Manager
Current Path:
/home/gfecatvj/4abetter.us/wp-content/plugins/woocommerce/src/Enums
home
/
gfecatvj
/
4abetter.us
/
wp-content
/
plugins
/
woocommerce
/
src
/
Enums
/
📁
..
📄
CatalogVisibility.php
(616 B)
📄
FeaturePluginCompatibility.php
(796 B)
📄
OrderInternalStatus.php
(947 B)
📄
OrderStatus.php
(1.98 KB)
📄
PaymentGatewayFeature.php
(2.93 KB)
📄
ProductStatus.php
(881 B)
📄
ProductStockStatus.php
(583 B)
📄
ProductTaxStatus.php
(533 B)
📄
ProductType.php
(633 B)
Editing: ProductStockStatus.php
<?php declare( strict_types = 1 ); namespace Automattic\WooCommerce\Enums; /** * Enum class for all the product stock statuses. */ final class ProductStockStatus { /** * The product is in stock. * * @var string */ public const IN_STOCK = 'instock'; /** * The product is out of stock. * * @var string */ public const OUT_OF_STOCK = 'outofstock'; /** * The product is on backorder. * * @var string */ public const ON_BACKORDER = 'onbackorder'; /** * The product is low in stock. * * @var string */ public const LOW_STOCK = 'lowstock'; }
Upload File
Create Folder