You are here

views_term_path.views.inc in Views Term Path 7

File

views_term_path.views.inc
View source
<?php

/**
 * Implements of hook_views_data().
 */
function views_term_path_views_data() {
  return array(
    'taxonomy_term_data' => array(
      'path' => array(
        'group' => t('Taxonomy term'),
        'title' => t('Path'),
        'help' => t('Term path'),
        'field' => array(
          'handler' => 'views_term_path_handler_field_path',
        ),
      ),
    ),
  );
}

Functions

Namesort descending Description
views_term_path_views_data Implements of hook_views_data().