taxonomy_admin_term_edit

Versions
4.7
taxonomy_admin_term_edit($tid = NULL)
5 – 6
taxonomy_admin_term_edit($tid)

Page to edit a vocabulary term.

Code

modules/taxonomy/taxonomy.admin.inc, line 228

<?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();
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.