You are here

function admin_theme_permission in Administration theme 7

Implements hook_permission().

File

./admin_theme.module, line 12
Enable the administration theme on more pages, then possible with Drupal's default administration page.

Code

function admin_theme_permission() {
  return array(
    'access admin theme' => array(
      'title' => t('Access administration theme'),
      'description' => t('View pages using the administration theme'),
    ),
  );
}