You are here

function taxonomy_delete_link_confirm_delete in Taxonomy Delete Link 7

Form builder for the term delete form.

1 string reference to 'taxonomy_delete_link_confirm_delete'
taxonomy_delete_link_menu in ./taxonomy_delete_link.module
Implements hook_menu().

File

includes/taxonomy_delete_link.admin.inc, line 11
Provides the term delete form.

Code

function taxonomy_delete_link_confirm_delete($form, &$form_state, $term) {

  // Always provide entity id in the same form key as in the entity edit form.
  $form['tid'] = array(
    '#type' => 'value',
    '#value' => $term->tid,
  );
  $vocabulary = NULL;
  if (isset($term->vid)) {
    $vocabulary = taxonomy_vocabulary_load($term->vid);
  }
  $form['#vocabulary'] = $vocabulary;
  $form['#term'] = $term;
  $form['type'] = array(
    '#type' => 'value',
    '#value' => 'term',
  );
  $form['name'] = array(
    '#type' => 'value',
    '#value' => $term->name,
  );
  $form['vocabulary_machine_name'] = array(
    '#type' => 'value',
    '#value' => $term->vocabulary_machine_name,
  );
  $form['delete'] = array(
    '#type' => 'value',
    '#value' => TRUE,
  );
  return confirm_form($form, t('Are you sure you want to delete the term %title?', array(
    '%title' => $term->name,
  )), 'admin/structure/taxonomy', t('Deleting a term will delete all its children if there are any. This action cannot be undone.'), t('Delete'), t('Cancel'));
}