You are here

function page_theme_permission in Page Theme 7

Implements hook_permission().

File

./page_theme.module, line 33
This module allows to use different themes than the site default on specific pages.

Code

function page_theme_permission() {
  $perm = array();
  $perm['administer page theme'] = array(
    'title' => t('Administer page theme settings'),
  );
  return $perm;
}