You are here

function webform_phone_webform_validator_alter in Webform Phone Number 7.2

Same name and namespace in other branches
  1. 7 webform_phone.module \webform_phone_webform_validator_alter()

Implements hook_webform_validator_alter().

File

./webform_phone.module, line 52
Webform declaration of phone field

Code

function webform_phone_webform_validator_alter(&$validators) {
  $validators['unique']['component_types'][] = 'phone';
  $validators['oneoftwo']['component_types'][] = 'phone';
  $validators['oneofseveral']['component_types'][] = 'phone';
}