You are here

function webform_conditional_operator_string_not_empty in Webform 7.4

Conditional callback for checking for empty fields.

1 string reference to 'webform_conditional_operator_string_not_empty'
_webform_conditional_operator_info in includes/webform.conditionals.inc
Implements hook_webform_conditional_operator_info().

File

includes/webform.conditionals.inc, line 1621
Form elements and menu callbacks to provide conditional handling in Webform.

Code

function webform_conditional_operator_string_not_empty($input_values, $rule_value) {
  return !webform_conditional_operator_string_empty($input_values, $rule_value);
}