| 5 taxonomy.module | taxonomy_vocabulary_confirm_delete_submit( |
| 6 taxonomy.admin.inc | taxonomy_vocabulary_confirm_delete_submit($form, &$form_state) |
| 7 taxonomy.admin.inc | taxonomy_vocabulary_confirm_delete_submit($form, &$form_state) |
| 8 taxonomy.admin.inc | taxonomy_vocabulary_confirm_delete_submit($form, &$form_state) |
File
- modules/
taxonomy.module, line 340 - Enables the organization of content into categories.
Code
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' => theme('placeholder', $form_values['name']))));
return 'admin/taxonomy';
}
Login or register to post comments