Automattic\WooCommerce\Admin\RemoteInboxNotifications

IsEcommerceRuleProcessor::process()publicWC 1.0

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

Метод класса: IsEcommerceRuleProcessor{}

Хуков нет.

Возвращает

true|false. The result of the operation.

Использование

$IsEcommerceRuleProcessor = new IsEcommerceRuleProcessor();
$IsEcommerceRuleProcessor->process( $rule, $stored_state );
$rule(объект) (обязательный)
The rule being processed by this rule processor.
$stored_state(объект) (обязательный)
Stored state.

Код IsEcommerceRuleProcessor::process() 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;
}