Same name and namespace in other branches
  1. 10 core/modules/block/block.module \block_theme()
  2. 7.x modules/block/block.module \block_theme()
  3. 8.9.x core/modules/block/block.module \block_theme()
  4. 9 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,
      ),
    ),
  );
}