You are here

vud_node.views.inc in Vote Up/Down 7

Provide views data and handlers for vud_node.module

File

vud_node/views/vud_node.views.inc
View source
<?php

/**
 * @file
 * Provide views data and handlers for vud_node.module
 */

/**
 * Implementation of hook_views_data_alter().
 */
function vud_node_views_data_alter(&$data) {
  $data['node']['vud_node_widget'] = array(
    'group' => t('Vote Up/Down'),
    'title' => t('Node Widget'),
    'help' => t('Provide a node widget for the Vote up/Down module.'),
    'field' => array(
      'handler' => 'vud_node_handler_field_widget',
    ),
  );
}

Functions

Namesort descending Description
vud_node_views_data_alter Implementation of hook_views_data_alter().