function og_menu_og_permission in Organic Groups Menu (OG Menu) 7.3
Same name and namespace in other branches
- 7.2 og_menu.module \og_menu_og_permission()
Implements hook_og_permission().
File
- ./
og_menu.module, line 27 - Integrates Menu with Organic Groups. Lots of menu forms duplication in OG context.
Code
function og_menu_og_permission() {
return array(
'administer og menu' => array(
'title' => t('Administer OG menus'),
'description' => t('Administer custom menus in the group context'),
),
);
}