You are here

function telephone_field_formatter_info in Telephone 7

Implements hook_field_formatter_info().

File

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

Code

function telephone_field_formatter_info() {
  return array(
    'telephone_link' => array(
      'label' => t('Telephone link'),
      'field types' => array(
        'telephone',
      ),
      'settings' => array(
        'title' => '',
      ),
    ),
  );
}