_block_themes_access

Versions
6 – 7
_block_themes_access($theme)

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

Code

modules/block/block.module, line 180

<?php
function _block_themes_access($theme) {
  return user_access('administer blocks') && ($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.