taxonomy_term_confirm_delete_submit

Definition

taxonomy_term_confirm_delete_submit($form_id, $form_values)
modules/taxonomy.module, line 527

Code

<?php
function taxonomy_term_confirm_delete_submit($form_id, $form_values) {
  taxonomy_del_term($form_values['tid']);
  drupal_set_message(t('Deleted term %name.', array('%name' => theme('placeholder', $form_values['name']))));
  return 'admin/taxonomy';
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.