function _system_themes_access
Same name and namespace in other branches
- 7.x drupal-7.x/modules/system/system.module \_system_themes_access()
Menu item access callback - only admin or enabled themes can be accessed.
1 string reference to '_system_themes_access'
- system_menu in drupal-6.x/
modules/ system/ system.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
modules/ system/ system.module, line 524 - Configuration system that lets administrators modify the workings of the site.
Código
function _system_themes_access($theme) {
return user_access('administer site configuration') && ($theme->status || $theme->name == variable_get('admin_theme', '0'));
}