Automattic\WooCommerce\Admin\RemoteSpecs\RuleProcessors
IsEcommerceRuleProcessor::process
Passes (or fails) based on whether the site is on the eCommerce plan or not.
Method of the class: IsEcommerceRuleProcessor{}
No Hooks.
Returns
true|false. The result of the operation.
Usage
$IsEcommerceRuleProcessor = new IsEcommerceRuleProcessor(); $IsEcommerceRuleProcessor->process( $rule, $stored_state );
- $rule(object) (required)
- The rule being processed by this rule processor.
- $stored_state(object) (required)
- Stored state.
IsEcommerceRuleProcessor::process() IsEcommerceRuleProcessor::process code WC 10.6.2
public function process( $rule, $stored_state ) {
if ( ! function_exists( 'wc_calypso_bridge_is_ecommerce_plan' ) ) {
return false === $rule->value;
}
return (bool) wc_calypso_bridge_is_ecommerce_plan() === $rule->value;
}