You are here

function node_gallery_api_views_data_alter in Node Gallery 7

Implements hook_views_data_alter().

File

includes/views/node_gallery_api.views.inc, line 132
Views-related functions for Node Gallery API.

Code

function node_gallery_api_views_data_alter(&$data) {
  $data['node']['node_gallery_relationship']['group'] = t('Node Gallery Relationship');
  $data['node']['node_gallery_relationship']['title'] = t('Node Gallery Relationship from Gallery Item');
  $data['node']['node_gallery_relationship']['help'] = t('The Node Gallery Relationship associated with the Gallery Item.');
  $data['node']['node_gallery_relationship_ngid']['group'] = t('Node Gallery Relationship');
  $data['node']['node_gallery_relationship_ngid']['title'] = t('Node Gallery Relationship from Gallery');
  $data['node']['node_gallery_relationship_ngid']['help'] = t('The Node Gallery Relationship associated with the Gallery.');
}