1 block.module block_block_configure($delta)

Implements hook_block_configure().

File

core/modules/block/block.module, line 136
Provides the ability to create reusable custom blocks.

Code

function block_block_configure($delta) {
  if ($delta) {
    $custom_block = block_custom_block_load($delta);
    $custom_block['delta'] = $delta;
  }
  else {
    $custom_block = array();
  }
  return block_custom_block_form($custom_block, FALSE);
}