You are here

function webform_validation_testing_webform_validation_validate in Webform Validation 7

Implements hook_webform_validation_validate().

File

modules/webform_validation_testing/webform_validation_testing.module, line 33
Module file for webform_validation_testing.

Code

function webform_validation_testing_webform_validation_validate($validator_name, $items, $components, $rule) {
  switch ($validator_name) {
    case 'webform_validation_testing_1':
      return array();
  }
}