function taxonomy_add_term_page

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

1 string reference to 'taxonomy_add_term_page'
taxonomy_menu in drupal-6.x/modules/taxonomy/taxonomy.module
Implementation of hook_menu().

Archivo

drupal-6.x/modules/taxonomy/taxonomy.admin.inc, line 622
Administrative page callbacks for the taxonomy module.

Código

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