You are here

function hs_smallhierarchy_hierarchical_select_params in Hierarchical Select 7.3

Same name and namespace in other branches
  1. 5.3 modules/hs_smallhierarchy.module \hs_smallhierarchy_hierarchical_select_params()
  2. 6.3 modules/hs_smallhierarchy.module \hs_smallhierarchy_hierarchical_select_params()

Implementation of hook_hierarchical_select_params().

File

modules/hs_smallhierarchy.module, line 17
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_params() {
  $params = array(
    'hierarchy',
    'id',
    'separator',
  );
  return $params;
}