You are here

function bigmenu_permission in Big Menu 7

Implements hook_permission().

File

./bigmenu.module, line 95
Alternative to core menu management.

Code

function bigmenu_permission() {
  return array(
    'administer bigmenu' => array(
      'title' => t('Administer Big Menu'),
      'description' => t('Allows configuration of Big Menu'),
    ),
    'use bigmenu' => array(
      'title' => t('Use Big Menu'),
      'description' => t('Allows the use of Big Menu'),
    ),
  );
}