| 6 system.module | _system_themes_access($theme) |
| 7 system.module | _system_themes_access($theme) |
| 8 system.module | _system_themes_access($theme) |
Menu item access callback - only admin or enabled themes can be accessed.
1 string reference to '_system_themes_access'
File
- modules/
system/ system.module, line 1695 - 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);
}
Login or register to post comments