You are here

function telephone_validation_field_info_alter in Telephone Validation 8.2

Same name and namespace in other branches
  1. 7 telephone_validation.module \telephone_validation_field_info_alter()

Implements hook_field_info_alter().

File

./telephone_validation.module, line 29
Validate telephone number.

Code

function telephone_validation_field_info_alter(&$info) {

  // Add validation constraint to telephone field.
  $info['telephone']['constraints']['Telephone'] = [];
}