You are here

function telephone_field_formatter_info_alter in Telephone 7

Implements hook_field_formatter_info_alter().

File

./telephone.module, line 105
Defines a simple telephone number field type.

Code

function telephone_field_formatter_info_alter(&$info) {
  if (isset($info['text_plain'])) {
    $info['text_plain']['field types'][] = 'telephone';
  }
}