You are here

function og_menu_permission in Organic Groups Menu (OG Menu) 7.3

Same name and namespace in other branches
  1. 7.2 og_menu.module \og_menu_permission()

Implements hook_permission().

File

./og_menu.module, line 11
Integrates Menu with Organic Groups. Lots of menu forms duplication in OG context.

Code

function og_menu_permission() {
  return array(
    'administer og menu configuration' => array(
      'title' => t('Administer OG Menu configuration'),
      'description' => t('Grant access to the global OG Menu configuration.'),
    ),
    'administer og menu' => array(
      'title' => t('Administer OG menus'),
      'description' => t('Administer custom menus for all groups.'),
    ),
  );
}