You are here

function views_contact_form_views_plugins in Views Contact Form 7

Implementation of hook_views_plugins().

File

views/views_contact_form.views.inc, line 6

Code

function views_contact_form_views_plugins() {
  return array(
    'style' => array(
      'views_contact_form_style' => array(
        'title' => t('Views contact form'),
        'help' => t('Displays a contact form where the recipient is a value from a field.'),
        'handler' => 'views_contact_form_style',
        'path' => drupal_get_path('module', 'views_contact_form') . '/views',
        'uses fields' => TRUE,
        'uses row plugin' => FALSE,
        'uses options' => TRUE,
        'uses grouping' => FALSE,
        'type' => 'normal',
        'even empty' => FALSE,
      ),
    ),
  );
}