You are here

function og_subgroups_hs_hierarchical_select_params in Subgroups for Organic groups 6

Implementation of hook_hierarchical_select_params().

File

modules/og_subgroups_hs/og_subgroups_hs.module, line 53
Implementation of the Hierarchical Select API for the OG Subgroups module.

Code

function og_subgroups_hs_hierarchical_select_params() {
  $params = array(
    'nid',
    // The id of the group.
    'optional',
  );
  return $params;
}