You are here

function hs_taxonomy_hierarchical_select_params in Hierarchical Select 6.3

Same name and namespace in other branches
  1. 5.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().

File

modules/hs_taxonomy.module, line 367
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',
    // Displays a fake "<root>" term in the root level (necessary for the taxonomy_form-term form).
    'entity_count_for_node_type',
  );
  return $params;
}