function custom_block_type_delete_form_submit

Form submission handler for custom_block_type_delete_form().

File

drupal/core/modules/block/custom_block/custom_block.admin.inc, line 78
Admin page callbacks for the custom block module.

Code

function custom_block_type_delete_form_submit($form, &$form_state) {
  $block_type = $form_state['custom_block_type'];
  $block_type
    ->delete();
  drupal_set_message(t('Custom block type %label has been deleted.', array(
    '%label' => $block_type
      ->label(),
  )));
  watchdog('custom_block', 'Custom block type %label has been deleted.', array(
    '%label' => $block_type
      ->label(),
  ), WATCHDOG_NOTICE);
  $form_state['redirect'] = 'admin/structure/custom-blocks';
}