You are here

function stickynav_permission in Sticky Navigation 7

Implements hook_permission().

File

./stickynav.module, line 42
Make a menu or some other element on the page stick on top when you scroll down

Code

function stickynav_permission() {
  return array(
    'administer stickynav' => array(
      'title' => t('Administer Sticky Nav'),
      'description' => t('Permission to activate and manage Sticky Nav.'),
    ),
  );
}