function hs_content_taxonomy_hierarchical_select_params in Hierarchical Select 6.3
Same name and namespace in other branches
- 5.3 modules/hs_content_taxonomy.module \hs_content_taxonomy_hierarchical_select_params()
Implementation of hook_hierarchical_select_params().
File
- modules/
hs_content_taxonomy.module, line 361 - 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;
}