function taxonomy_manager_voc in Taxonomy Manager 5
returns either form for deletion confirm or the taxonomy manager form
1 string reference to 'taxonomy_manager_voc'
- taxonomy_manager_menu in ./
taxonomy_manager.module - Implementation of hook_menu
File
- ./
taxonomy_manager.module, line 127 - Taxonomy Manager
Code
function taxonomy_manager_voc($vid, $tid = 0, $filter = NULL) {
if ($_POST['op'] == t('Delete') || $_POST['confirm']) {
return drupal_get_form('taxonomy_manager_terms_confirm_delete', $vid, $_POST);
}
return drupal_get_form('taxonomy_manager_form', $vid, $tid, $filter);
}