function og_subgroups_hs_menu in Subgroups for Organic groups 6
Implementation of hook_menu().
File
- modules/
og_subgroups_hs/ og_subgroups_hs.module, line 16 - Implementation of the Hierarchical Select API for the OG Subgroups module.
Code
function og_subgroups_hs_menu() {
$items = array();
// Taken from the hs_taxonomy_views module
$items['og_subgroups_hs_views_json/%/%'] = array(
'page callback' => 'og_subgroups_hs_views_json',
'page arguments' => array(
1,
2,
),
'type' => MENU_CALLBACK,
'access callback' => TRUE,
);
return $items;
}