You are here

function page_theme_menu_access_add in Page Theme 6

Same name and namespace in other branches
  1. 7 page_theme.module \page_theme_menu_access_add()
1 string reference to 'page_theme_menu_access_add'
page_theme_menu in ./page_theme.module
Implementation of hook_menu().

File

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

Code

function page_theme_menu_access_add($perm) {
  $theme_options = page_theme_get_theme_options();
  return user_access($perm) && count($theme_options) > 1;
}