taxonomy_form_term_submit

5 taxonomy.module taxonomy_form_term_submit($form_id, $form_values)
6 taxonomy.admin.inc taxonomy_form_term_submit($form, &$form_state)
7 taxonomy.admin.inc taxonomy_form_term_submit($form, &$form_state)
8 taxonomy.admin.inc taxonomy_form_term_submit($form, &$form_state)

Accept the form submission for a taxonomy term and save the result.

File

modules/taxonomy.module, line 406
Enables the organization of content into categories.

Code

function taxonomy_form_term_submit($form_id, $form_values) {
  switch (taxonomy_save_term($form_values)) {
    case SAVED_NEW:
      drupal_set_message(t('Created new term %term.', array('%term' => theme('placeholder', $form_values['name']))));
      break;
    case SAVED_UPDATED:
      drupal_set_message(t('The term %term has been updated.', array('%term' => theme('placeholder', $form_values['name']))));
      break;
  }
  return 'admin/taxonomy';
}
Login or register to post comments