You are here

function views_contact_form_field_formatter_info in Views Contact Form 7

Implements hook_field_formatter_info().

File

./views_contact_form.module, line 51

Code

function views_contact_form_field_formatter_info() {
  $formats = array(
    'contact_form' => array(
      'label' => t('Contact form'),
      'description' => t('Display the default Drupal\'s contact form.'),
      'field types' => array(
        'email',
      ),
    ),
  );
  return $formats;
}