You are here

content_taxonomy.views.inc in Content Taxonomy 6.2

Same filename and directory in other branches
  1. 6 includes/views/content_taxonomy.views.inc

File

includes/views/content_taxonomy.views.inc
View source
<?php

/**
 * Implementation of hook_views_handlers().
 */
function content_taxonomy_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'content_taxonomy') . '/includes/views',
    ),
    'handlers' => array(
      'content_taxonomy_handler_filter_many_to_one' => array(
        'parent' => 'content_handler_filter_many_to_one',
      ),
      'content_taxonomy_handler_relationship' => array(
        'parent' => 'views_handler_relationship',
      ),
    ),
  );
}

Functions

Namesort descending Description
content_taxonomy_views_handlers Implementation of hook_views_handlers().