block_theme

6 block.module block_theme()
7 block.module block_theme()
8 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),
    ),
  );
}
Login or register to post comments