You are here

function hs_taxonomy_hierarchical_select_params in Hierarchical Select 5.3

Same name and namespace in other branches
  1. 6.3 modules/hs_taxonomy.module \hs_taxonomy_hierarchical_select_params()
  2. 7.3 modules/hs_taxonomy.module \hs_taxonomy_hierarchical_select_params()

Implementation of hook_hierarchical_select_params().

1 call to hs_taxonomy_hierarchical_select_params()
hs_taxonomy_views_hierarchical_select_params in modules/hs_taxonomy_views.module
Implementation of hook_hierarchical_select_params().

File

modules/hs_taxonomy.module, line 195
Implementation of the Hierarchical Select API for the Taxonomy module.

Code

function hs_taxonomy_hierarchical_select_params() {
  $params = array(
    'vid',
    'exclude_tid',
    // Allows a term to be excluded (necessary for the taxonomy_form_term form).
    'root_term',
  );
  return $params;
}