Same name and namespace in other branches
  1. 6.x modules/forum/forum.admin.inc \forum_confirm_delete()
  2. 7.x modules/forum/forum.admin.inc \forum_confirm_delete()

Returns a confirmation page for deleting a forum taxonomy term.

Parameters

$tid ID of the term to be deleted:

1 string reference to 'forum_confirm_delete'
forum_form_main in modules/forum/forum.module

File

modules/forum/forum.module, line 558
Enable threaded discussions about general topics.

Code

function forum_confirm_delete($tid) {
  $term = taxonomy_get_term($tid);
  $form['tid'] = array(
    '#type' => 'value',
    '#value' => $tid,
  );
  $form['name'] = array(
    '#type' => 'value',
    '#value' => $term->name,
  );
  return confirm_form($form, t('Are you sure you want to delete the forum %name?', array(
    '%name' => $term->name,
  )), 'admin/content/forum', t('Deleting a forum or container will delete all sub-forums and associated posts as well. This action cannot be undone.'), t('Delete'), t('Cancel'));
}