function hs_taxonomy_views_handlers in Hierarchical Select 6.3
Implementation of hook_views_handlers().
File
- modules/
hs_taxonomy_views.module, line 174 - Implementation of the Hierarchical Select API for the Taxonomy module's Views exposed filters.
Code
function hs_taxonomy_views_handlers() {
return array(
'handlers' => array(
// Provide a subclass of the term filter handler, to make it possible to
// use Hierarchical Select in Views.
'hs_taxonomy_views_handler_filter_term_node_tid' => array(
'parent' => 'views_handler_filter_term_node_tid',
),
'hs_taxonomy_views_handler_filter_term_node_tid_depth' => array(
'parent' => 'hs_taxonomy_views_handler_filter_term_node_tid',
),
),
);
}