You are here

function content_taxonomy_views_handlers in Content Taxonomy 6.2

Same name and namespace in other branches
  1. 6 includes/views/content_taxonomy.views.inc \content_taxonomy_views_handlers()

Implementation of hook_views_handlers().

File

includes/views/content_taxonomy.views.inc, line 6

Code

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',
      ),
    ),
  );
}