You are here

function megamenu_permission in Megamenu 7

Implements hook_permission().

File

./megamenu.module, line 90
Takes existing menus and produces blocks that render the menu as a megamenu.

Code

function megamenu_permission() {
  return array(
    'administer mega menu' => array(
      'title' => t('Administer Megamenu'),
      'description' => t('Perform administration tasks for Megamenu.'),
    ),
  );
}