You are here

function block_theme in Block Cache Alter 6

Same name in this branch
  1. 6 patches/block_with_node_grants.module \block_theme()
  2. 6 patches/block_no_node_grants.module \block_theme()

Implementation of hook_theme()

File

patches/block_no_node_grants.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,
      ),
    ),
  );
}