Automattic\WooCommerce\Admin\RemoteSpecs\RuleProcessors
PluginVersionRuleProcessor::validate()
Validates the rule.
Method of the class: PluginVersionRuleProcessor{}
No Hooks.
Return
true|false
. Pass/fail.
Usage
$PluginVersionRuleProcessor = new PluginVersionRuleProcessor(); $PluginVersionRuleProcessor->validate( $rule );
- $rule(object) (required)
- The rule to validate.
PluginVersionRuleProcessor::validate() PluginVersionRuleProcessor::validate code WC 9.6.1
public function validate( $rule ) { if ( ! isset( $rule->plugin ) ) { return false; } if ( ! isset( $rule->version ) ) { return false; } if ( ! isset( $rule->operator ) ) { return false; } return true; }