function page_theme_perm in Page Theme 6
Implementation of hook_perm().
File
- ./
page_theme.module, line 32 - This module allows to use different themes than the site default on specific pages.
Code
function page_theme_perm() {
$perm = array();
$perm[] = 'administer page theme';
return $perm;
}