function hs_smallhierarchy_hierarchical_select_implementation_info in Hierarchical Select 5.3
Same name and namespace in other branches
- 6.3 modules/hs_smallhierarchy.module \hs_smallhierarchy_hierarchical_select_implementation_info()
- 7.3 modules/hs_smallhierarchy.module \hs_smallhierarchy_hierarchical_select_implementation_info()
Implementation of hook_hierarchical_select_implementation_info().
File
- modules/
hs_smallhierarchy.module, line 97 - Implementation of the Hierarchical Select API that allows one to use a hardcoded hierarchy. When it becomes to slow, you should move the hierarchy into the database and write a proper implementation.
Code
function hs_smallhierarchy_hierarchical_select_implementation_info() {
return array(
'hierarchy type' => t('Custom'),
'entity type' => t('N/A'),
);
}