function _omega_tools_theme_access in Omega Tools 7.3
@todo
1 string reference to '_omega_tools_theme_access'
- omega_tools_menu in ./
omega_tools.module - Implements hook_menu().
File
- ./
omega_tools.module, line 610
Code
function _omega_tools_theme_access($theme) {
if ($theme && user_access('administer themes')) {
$themes = list_themes();
if (!isset($themes[$theme->name]) || _omega_tools_is_editable($theme->name)) {
return TRUE;
}
}
return FALSE;
}