taxonomy_term_confirm_delete_submit
- Versions
- 4.7 – 5
taxonomy_term_confirm_delete_submit($form_id,$form_values)- 6 – 7
taxonomy_term_confirm_delete_submit($form, &$form_state)
Code
modules/taxonomy.module, line 527
<?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';
}
?>Login or register to post comments 