function webmaster_menu_permission in Webmaster menu 7
Implements hook_permission().
File
- ./
webmaster_menu.module, line 311  - Display a dropdown menu at the top of the window.
 
Code
function webmaster_menu_permission() {
  return array(
    'administer webmaster menu' => array(
      'title' => t('Administer webmaster menu'),
      'description' => t('Configure webmaster menu'),
    ),
  );
}