This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/content_taxonomy/includes/views/content_taxonomy.views.inc

17 lines
399 B
PHP

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