function menu_attach_block_theme in Menu Attach Block 7
Implements hook_theme().
File
- ./
menu_attach_block.module, line 44 - Module to enable adding a block to menu item.
Code
function menu_attach_block_theme() {
return array(
'menu_attach_block_wrapper' => array(
'template' => 'menu_attach_block_wrapper',
'variables' => array(
'content' => NULL,
'orientation' => NULL,
'block' => NULL,
'link' => NULL,
),
),
);
}