function block_theme

Implements hook_theme().

File

drupal/core/modules/block/block.module, line 90
Controls the visual building blocks a page is constructed with.

Code

function block_theme() {
  return array(
    'block' => array(
      'render element' => 'elements',
      'template' => 'block',
    ),
  );
}