You are here

function webform_conditional_operator_product_quantity_greater_than in Commerce Webform 8

Same name and namespace in other branches
  1. 7.2 productfield.inc \webform_conditional_operator_product_quantity_greater_than()

Webform conditionals comparison callback for product fields.

1 string reference to 'webform_conditional_operator_product_quantity_greater_than'
_commerce_webform_conditional_operator_info in ./productfield.inc
Define conditional operators for productfields.

File

./productfield.inc, line 923

Code

function webform_conditional_operator_product_quantity_greater_than($input_values, $rule_value) {
  return _commerce_webform_get_total_quantity_from_input_values($input_values) > $rule_value;
}