function hs_content_taxonomy_hierarchical_select_params in Hierarchical Select 5.3
Same name and namespace in other branches
- 6.3 modules/hs_content_taxonomy.module \hs_content_taxonomy_hierarchical_select_params()
Implementation of hook_hierarchical_select_params().
1 call to hs_content_taxonomy_hierarchical_select_params()
- hs_content_taxonomy_views_hierarchical_select_params in modules/
hs_content_taxonomy_views.module - Implementation of hook_hierarchical_select_params().
File
- modules/
hs_content_taxonomy.module, line 424 - Implementation of the Hierarchical Select API for the Content Taxonomy module.
Code
function hs_content_taxonomy_hierarchical_select_params() {
$params = array(
'vid',
// The vocabulary id.
'tid',
// The root term's term id.
'depth',
);
return $params;
}