You are here

function telephone_field_widget_info in Telephone 7

Implements hook_field_widget_info().

File

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

Code

function telephone_field_widget_info() {
  return array(
    'telephone_default' => array(
      'label' => t('Telephone number'),
      'field types' => array(
        'telephone',
      ),
      'settings' => array(
        'placeholder' => '',
      ),
    ),
  );
}