| Versionen | |
|---|---|
| drupal6 – drupal7 | _block_themes_access($theme) |
Menu item access callback - only admin or enabled themes can be accessed
modules/
<?php
function _block_themes_access($theme) {
return user_access('administer blocks') && ($theme->status || $theme->name == variable_get('admin_theme', '0'));
}
?>
Kommentare
Kommentar hinzufügen