function biblio_ui_delete_bundle_submit in Bibliography Module 7.3
Delete the biblio bundle.
File
- modules/
biblio_ui/ biblio_ui.module, line 784 - Main functionality file for the biblio UI module.
Code
function biblio_ui_delete_bundle_submit($form, $form_state) {
biblio_type_delete($form_state['#type']->type);
drupal_set_message(t('The bundle @title was deleted successfully.', array(
'@title' => $form_state['#type']->name,
)));
}