You are here

function webform_views_plugins in Webform 7.4

Implements hook_views_plugins().

File

views/webform.views.inc, line 518
Views hooks implemented for the Webform module.

Code

function webform_views_plugins() {
  return array(
    'row' => array(
      'webform_submission' => array(
        'title' => t('Rendered submissions'),
        'help' => t('Display the rendered submission'),
        'handler' => 'webform_views_plugin_row_submission_view',
        'uses options' => TRUE,
        'type' => 'normal',
      ),
    ),
  );
}