__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 feature plugin compatibility.
*/
final class FeaturePluginCompatibility {
/**
* Plugins are compatible by default with the feature.
*
* @var string
*/
public const COMPATIBLE = 'compatible';
/**
* Plugins are incompatible by default with the feature.
*
* @var string
*/
public const INCOMPATIBLE = 'incompatible';
/**
* Plugin compatibility with the feautre is yet to be determined. Internal use only.
*
* @internal
* @var string
*/
public const UNCERTAIN = 'uncertain';
/**
* Valid values for registration of feature compatibility.
*
* @var string[]
*/
public const VALID_REGISTRATION_VALUES = array(
self::COMPATIBLE,
self::INCOMPATIBLE,
);
}
| 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 |
|