Automattic\WooCommerce\Admin\RemoteInboxNotifications

IsEcommerceRuleProcessor::process()publicWC 1.0

Passes (or fails) based on whether the site is on the eCommerce plan or not.

Method of the class: IsEcommerceRuleProcessor{}

No Hooks.

Return

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() code WC 8.7.0

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;
}