function multiblock_theme in MultiBlock 7
Same name and namespace in other branches
- 6 multiblock.module \multiblock_theme()
Implementation of hook_theme().
File
- ./
multiblock.module, line 390 - Enhances the block API, as provided by D7 Core.
Code
function multiblock_theme() {
return array(
'multiblock_general' => array(
'arguments' => array(
'add_block_form' => NULL,
'multiblocks' => NULL,
'edit' => NULL,
),
),
);
}