function og_menu_perm in Organic Groups Menu (OG Menu) 5
Same name and namespace in other branches
- 6.2 og_menu.module \og_menu_perm()
- 6 og_menu.module \og_menu_perm()
Implementation of hook_perm().
File
- ./
og_menu.module, line 138 - Modifies the menu module to support menus specific to organic groups.
Code
function og_menu_perm() {
return array(
'administer all menus',
'administer og menus',
);
}