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