You are here

function i18nviews_views_data in Internationalization Views 6.2

Same name and namespace in other branches
  1. 6.3 includes/i18nviews.views.inc \i18nviews_views_data()

Implementation of hook_views_data().

File

includes/i18nviews.views.inc, line 6

Code

function i18nviews_views_data() {
  $data['node']['content_negotiation'] = array(
    'group' => t('Node translation'),
    'title' => t('Content negotiation'),
    'help' => t('Removes the nodes that are not valid according to the content selection mode.'),
    'filter' => array(
      'handler' => 'i18nviews_content_negotiation_filter_handler',
    ),
  );
  return $data;
}