function block_theme in Drupal 6
Same name and namespace in other branches
- 8 core/modules/block/block.module \block_theme()
- 7 modules/block/block.module \block_theme()
- 9 core/modules/block/block.module \block_theme()
- 10 core/modules/block/block.module \block_theme()
Implementation of hook_theme()
File
- modules/
block/ block.module, line 98 - Controls the boxes that are displayed around the main content.
Code
function block_theme() {
return array(
'block_admin_display_form' => array(
'template' => 'block-admin-display-form',
'file' => 'block.admin.inc',
'arguments' => array(
'form' => NULL,
),
),
);
}