taxonomy_vocabulary_confirm_delete_submit

Versions
4.7 – 5
taxonomy_vocabulary_confirm_delete_submit($form_id, $form_values)
6 – 7
taxonomy_vocabulary_confirm_delete_submit($form, &$form_state)

Code

modules/taxonomy/taxonomy.module, line 386

<?php
function taxonomy_vocabulary_confirm_delete_submit($form_id, $form_values) {
  $status = taxonomy_del_vocabulary($form_values['vid']);
  drupal_set_message(t('Deleted vocabulary %name.', array('%name' => $form_values['name'])));
  watchdog('taxonomy', t('Deleted vocabulary %name.', array('%name' => $form_values['name'])), WATCHDOG_NOTICE);
  return 'admin/content/taxonomy';
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.