taxonomy_add_term_page

Versions
6
taxonomy_add_term_page($vocabulary)

Menu callback; return the edit form for a new term after setting the title.

Code

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

<?php
function taxonomy_add_term_page($vocabulary) {
  drupal_set_title(t('Add term to %vocabulary', array('%vocabulary' => $vocabulary->name)));
  return drupal_get_form('taxonomy_form_term' , $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.