You are here

function export_views_data_alter in Node export 6

Implementation of hook_views_data_alter()

File

views/export.views.inc, line 22

Code

function export_views_data_alter(&$views_data) {
  $views_data['node']['export_node'] = array(
    'field' => array(
      'title' => t('export link'),
      'help' => t('Provide a simple link to export the node.'),
      'handler' => 'views_handler_field_node_link_export',
    ),
  );
}