function block_theme

7.x block.module block_theme()
6.x block.module block_theme()

Implementation of hook_theme()

File

drupal-6.x/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),
    ),
  );
}