function imageblock_form_block_admin_display_form_alter in Image Block 6
Alters the block admin form to add delete links next to image blocks.
File
- ./
imageblock.module, line 104 - imageblock.module Primarily Drupal hooks.
Code
function imageblock_form_block_admin_display_form_alter(&$form, $form_state) {
$results = db_query("SELECT bid FROM {imageblock}");
while ($delta = db_result($results)) {
$form['imageblock_' . $delta]['delete'] = array(
'#value' => l(t('delete'), 'admin/build/block/imageblockdelete/' . $delta),
);
}
}