function taxonomy_vocabulary_confirm_delete in Drupal 6
Same name and namespace in other branches
- 5 modules/taxonomy/taxonomy.module \taxonomy_vocabulary_confirm_delete()
- 7 modules/taxonomy/taxonomy.admin.inc \taxonomy_vocabulary_confirm_delete()
Form builder for the vocabulary delete confirmation form.
See also
taxonomy_vocabulary_confirm_delete_submit()
Related topics
1 string reference to 'taxonomy_vocabulary_confirm_delete'
- taxonomy_admin_vocabulary_edit in modules/
taxonomy/ taxonomy.admin.inc - Page to edit a vocabulary.
File
- modules/
taxonomy/ taxonomy.admin.inc, line 865 - Administrative page callbacks for the taxonomy module.
Code
function taxonomy_vocabulary_confirm_delete(&$form_state, $vid) {
$vocabulary = taxonomy_vocabulary_load($vid);
$form['type'] = array(
'#type' => 'value',
'#value' => 'vocabulary',
);
$form['vid'] = array(
'#type' => 'value',
'#value' => $vid,
);
$form['name'] = array(
'#type' => 'value',
'#value' => $vocabulary->name,
);
return confirm_form($form, t('Are you sure you want to delete the vocabulary %title?', array(
'%title' => $vocabulary->name,
)), 'admin/content/taxonomy', t('Deleting a vocabulary will delete all the terms in it. This action cannot be undone.'), t('Delete'), t('Cancel'));
}