| Versionen | |
|---|---|
| drupal6 | taxonomy_admin_vocabulary_edit($vocabulary) |
Page to edit a vocabulary.
modules/
<?php
function taxonomy_admin_vocabulary_edit($vocabulary) {
if ((isset($_POST['op']) && $_POST['op'] == t('Delete')) || isset($_POST['confirm'])) {
return drupal_get_form('taxonomy_vocabulary_confirm_delete', $vocabulary->vid);
}
return drupal_get_form('taxonomy_form_vocabulary', (array) $vocabulary);
}
?>
Kommentare
Kommentar hinzufügen