You are here

function hs_flatlist_hierarchical_select_params in Hierarchical Select 7.3

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

Implements hook_hierarchical_select_params().

File

modules/hs_flatlist.module, line 16
Implementation of the Hierarchical Select API that allows one to use Hierarchical Select's dropbox for selecting multiple items of a flat list.

Code

function hs_flatlist_hierarchical_select_params() {
  $params = array(
    'options',
  );
  return $params;
}