1 taxonomy.admin.inc taxonomy_term_confirm_delete_submit($form, &$form_state)

Submit handler to delete a term after confirmation.

See also

taxonomy_term_confirm_delete()

File

core/modules/taxonomy/taxonomy.admin.inc, line 1090
Admin page callbacks for the Taxonomy module.

Code

function taxonomy_term_confirm_delete_submit($form, &$form_state) {
  taxonomy_term_delete($form_state['values']['tid']);
  taxonomy_check_vocabulary_hierarchy($form['#vocabulary'], $form_state['values']);
  backdrop_set_message(t('Deleted term %name.', array('%name' => $form_state['values']['name'])));
  watchdog('taxonomy', 'Deleted term %name.', array('%name' => $form_state['values']['name']), WATCHDOG_NOTICE);
  if (!isset($_GET['destination'])) {
    $form_state['redirect'] = 'admin/structure/taxonomy';
  }
}