You are here

function block_theme in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/block/block.module \block_theme()

Implements hook_theme().

4 string references to 'block_theme'
BlockForm::form in core/modules/block/src/BlockForm.php
Gets the actual form array to be built.
d6_block.yml in core/modules/block/migration_templates/d6_block.yml
core/modules/block/migration_templates/d6_block.yml
d7_block.yml in core/modules/block/migration_templates/d7_block.yml
core/modules/block/migration_templates/d7_block.yml
SystemBrandingBlock::blockForm in core/modules/system/src/Plugin/Block/SystemBrandingBlock.php
Returns the configuration form elements specific to this block plugin.

File

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

Code

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