taxonomy_admin_vocabulary_edit

Versions
4.7 – 5
taxonomy_admin_vocabulary_edit($vid = NULL)
6
taxonomy_admin_vocabulary_edit($vocabulary)

Page to edit a vocabulary.

Code

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

<?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);
}
?>
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.