function overlay_permission in Drupal 7
Implements hook_permission().
File
- modules/
overlay/ overlay.module, line 57 - Displays the Drupal administration interface in an overlay.
Code
function overlay_permission() {
return array(
'access overlay' => array(
'title' => t('Access the administrative overlay'),
'description' => t('View administrative pages in the overlay.'),
),
);
}