function imageblock_block_configure in Image Block 7
Implements hook_block_configure().
File
- ./
imageblock.module, line 84 - imageblock.module Primarily Drupal hooks.
Code
function imageblock_block_configure($delta = '') {
if ($delta) {
$custom_block = block_imageblock_get($delta);
}
else {
$custom_block = array();
}
$form = block_custom_block_form($custom_block);
imageblock_configure_form($form, $custom_block);
return $form;
}