taxonomy_vocabulary_confirm_delete_submit

Definition

taxonomy_vocabulary_confirm_delete_submit($form, &$form_state)
modules/taxonomy/taxonomy.admin.inc, line 885

Description

Submit handler to delete a vocabulary after confirmation.

See also

taxonomy_vocabulary_confirm_delete()

Code

<?php
function taxonomy_vocabulary_confirm_delete_submit($form, &$form_state) {
  $status = taxonomy_del_vocabulary($form_state['values']['vid']);
  drupal_set_message(t('Deleted vocabulary %name.', array('%name' => $form_state['values']['name'])));
  watchdog('taxonomy', 'Deleted vocabulary %name.', array('%name' => $form_state['values']['name']), WATCHDOG_NOTICE);
  $form_state['redirect'] = 'admin/content/taxonomy';
  return;
}
?>
 
 

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.