function _system_themes_access

Menu item access callback - only enabled themes can be accessed.

1 string reference to '_system_themes_access'
system_menu in drupal/core/modules/system/system.module
Implements hook_menu().

File

drupal/core/modules/system/system.module, line 2119
Configuration system that lets administrators modify the workings of the site.

Code

function _system_themes_access($theme) {
  return user_access('administer themes') && drupal_theme_access($theme);
}