You are here

function _webform_validation_check_false in Webform Validation 6

Same name and namespace in other branches
  1. 7 webform_validation.validators.inc \_webform_validation_check_false()

Helper function used by array_filter to determine if a value was selected or not

2 string references to '_webform_validation_check_false'
webform_validation_webform_validation_validate in ./webform_validation.validators.inc
Implementation of hook_webform_validation_validate().
_webform_validation_flatten_array in ./webform_validation.validators.inc
Helper function to deal with submitted values that are arrays (e.g. multiple select component) We flatten the array as a comma-separated list to do the comparison.

File

./webform_validation.validators.inc, line 606
Provides validation functionality and hooks

Code

function _webform_validation_check_false($var) {
  return $var !== FALSE;
}