block_block_configure

Definition

block_block_configure($delta = 0)
drupal/modules/block/block.module, line 195

Description

Implements hook_block_configure().

Code

function block_block_configure($delta = 0) {
  $custom_block = array('format' => filter_default_format());
  if ($delta) {
    $custom_block = block_custom_block_get($delta);
  }
  return block_custom_block_form($custom_block);
}