function block_block_configure

7.x block.module block_block_configure($delta = 0)

Implements hook_block_configure().

File

drupal-7.x/modules/block/block.module, line 220
Controls the visual building blocks a page is constructed with.

Code

function block_block_configure($delta = 0) {
  if ($delta) {
    $custom_block = block_custom_block_get($delta);
  }
  else {
    $custom_block = array();
  }
  return block_custom_block_form($custom_block);
}