function omega_tools_block_view in Omega Tools 7
Implemenation of hook_block_view
File
- ./
omega_tools.module, line 223
Code
function omega_tools_block_view($delta = '') {
if (variable_get('omega_tools_block_render', 'on') == 'on') {
// get a list of themes
$theme_key = variable_get('theme_default', 'garland');
$block_regions = system_region_list($theme_key);
$real_delta = str_replace('omega_', '', $delta);
$real_title = ucwords($block_regions[$real_delta]);
$block['subject'] = t($real_title);
$block['content'] = _omega_tools_generate_block_content($real_delta);
return $block;
}
}