| 7 overlay.module | overlay_permission() |
| 8 overlay.module | overlay_permission() |
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.'),
),
);
}
Login or register to post comments