__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare( strict_types = 1 );
namespace Automattic\WooCommerce\Enums;
/**
* Enum class for all the internal order statuses.
* These statuses are used internally by WooCommerce to query database directly.
*/
final class OrderInternalStatus {
/**
* The order is pending payment.
*
* @var string
*/
public const PENDING = 'wc-pending';
/**
* The order is processing.
*
* @var string
*/
public const PROCESSING = 'wc-processing';
/**
* The order is on hold.
*
* @var string
*/
public const ON_HOLD = 'wc-on-hold';
/**
* The order is completed.
*
* @var string
*/
public const COMPLETED = 'wc-completed';
/**
* The order is cancelled.
*
* @var string
*/
public const CANCELLED = 'wc-cancelled';
/**
* The order is refunded.
*
* @var string
*/
public const REFUNDED = 'wc-refunded';
/**
* The order is failed.
*
* @var string
*/
public const FAILED = 'wc-failed';
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CatalogVisibility.php | File | 616 B | 0664 |
|
| FeaturePluginCompatibility.php | File | 796 B | 0664 |
|
| OrderInternalStatus.php | File | 947 B | 0664 |
|
| OrderStatus.php | File | 2.19 KB | 0664 |
|
| PaymentGatewayFeature.php | File | 3.03 KB | 0664 |
|
| ProductStatus.php | File | 881 B | 0664 |
|
| ProductStockStatus.php | File | 583 B | 0664 |
|
| ProductTaxStatus.php | File | 533 B | 0664 |
|
| ProductType.php | File | 633 B | 0664 |
|