_system_themes_access

Versions
6 – 7
_system_themes_access($theme)

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

Code

modules/system/system.module, line 524

<?php
function _system_themes_access($theme) {
  return user_access('administer site configuration') && ($theme->status || $theme->name == variable_get('admin_theme', '0'));
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.