Automattic\WooCommerce\Enums
ProductStockStatus{}
Enum class for all the product stock statuses.
No Hooks.
Usage
$ProductStockStatus = new ProductStockStatus(); // use class methods
Methods
No Methods in class.ProductStockStatus{} ProductStockStatus{} code WC 10.7.0
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';
}