function taxonomy_term_confirm_delete_submit

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/taxonomy/taxonomy.admin.inc \taxonomy_term_confirm_delete_submit()

Submit handler to delete a term after confirmation.

See also

taxonomy_term_confirm_delete()

1 call to taxonomy_term_confirm_delete_submit()
taxonomy_form_term_submit in drupal-6.x/modules/taxonomy/taxonomy.admin.inc
Submit handler to insert or update a term.

Archivo

drupal-6.x/modules/taxonomy/taxonomy.admin.inc, line 850
Administrative page callbacks for the taxonomy module.

Código

function taxonomy_term_confirm_delete_submit($form, &$form_state) {
  taxonomy_del_term($form_state['values']['tid']);
  taxonomy_check_vocabulary_hierarchy($form['#vocabulary'], $form_state['values']);
  drupal_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);
  $form_state['redirect'] = 'admin/content/taxonomy';
  return;
}