function clean_markup_blocks_theme in Clean Markup 7.3
Same name and namespace in other branches
- 7.2 modules/clean_markup_blocks/clean_markup_blocks.module \clean_markup_blocks_theme()
Implements hook_theme().
File
- modules/
clean_markup_blocks/ clean_markup_blocks.module, line 311 - Provides clean block markup.
Code
function clean_markup_blocks_theme($existing, $type, $theme, $path) {
// Return our own block theme-hook implementation, which will override core's
// block module's implementation.
return array(
'block' => array(
'render element' => 'elements',
'template' => 'block',
),
);
}