You are here

function og_subgroups_hs_hierarchical_select_config_info in Subgroups for Organic groups 6

Implementation of hook_hierarchical_select_config_info().

File

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

Code

function og_subgroups_hs_hierarchical_select_config_info() {
  $config_info['og_subgroups'] = array(
    'config_id' => 'og_subgroups',
    'hierarchy type' => t('OG Subgroups'),
    'hierarchy' => '',
    'entity type' => t('Node'),
    'entity' => t('Group'),
    'context type' => t('Node Form'),
    'context' => '',
    'edit link' => NULL,
  );
  return $config_info;
}