taxonomy_admin_term_edit

Definition

taxonomy_admin_term_edit($tid = NULL)
modules/taxonomy.module, line 1280

Description

Page to list terms for a vocabulary

Code

<?php
function taxonomy_admin_term_edit($tid = NULL) {
  if ($_POST['op'] == t('Delete') || $_POST['edit']['confirm']) {
    return _taxonomy_confirm_del_term($tid);
  }
  elseif ($tid) {
    $term = (array)taxonomy_get_term($tid);
  }
  return taxonomy_form_term($term);
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.