| Versionen | |
|---|---|
| drupal6 | taxonomy_admin_term_edit($tid) |
Page to edit a vocabulary term.
modules/
<?php
function taxonomy_admin_term_edit($tid) {
if ($term = (array) taxonomy_get_term($tid)) {
return drupal_get_form('taxonomy_form_term', taxonomy_vocabulary_load($term['vid']), $term);
}
return drupal_not_found();
}
?>
Kommentare
Kommentar hinzufügen