You are here

function jquerymenu_permission in JQuery menu 7.3

Same name and namespace in other branches
  1. 7.4 jquerymenu.module \jquerymenu_permission()

Implements hook_permission

File

./jquerymenu.module, line 27
The jQuerymenu module parses hierarchical link arrays and renders them as click and expand menu blocks.

Code

function jquerymenu_permission() {
  return array(
    'administer jquerymenu' => array(
      'title' => t('Administer jQuery Menu'),
      'description' => t('Perform administration tasks for my jQuery Menu.'),
    ),
  );
}