You are here

function biblio_ui_contributor_delete_form_submit in Bibliography Module 7.3

Delete the contributor entry.

File

modules/biblio_ui/biblio_ui.module, line 1087
Main functionality file for the biblio UI module.

Code

function biblio_ui_contributor_delete_form_submit($form, &$form_state) {
  $contributor = $form_state['#entity'];
  $contributor
    ->delete();
  $form_state['redirect'] = 'admin/biblio-contributor';
}