You are here

function hs_taxonomy_views_hierarchical_select_params in Hierarchical Select 6.3

Same name and namespace in other branches
  1. 5.3 modules/hs_taxonomy_views.module \hs_taxonomy_views_hierarchical_select_params()

Implementation of hook_hierarchical_select_params().

File

modules/hs_taxonomy_views.module, line 386
Implementation of the Hierarchical Select API for the Taxonomy module's Views exposed filters.

Code

function hs_taxonomy_views_hierarchical_select_params() {
  $params = array(
    'vid',
    'optional',
    // Do we display an "All" option?
    'filter_id',
    // The ID of the filter. Necessary for entity count support.
    'exclude_tid',
    // Allows a term to be excluded (necessary for the taxonomy_form_term form).
    'root_term',
  );
  return $params;
}