function forum_confirm_delete

forum_confirm_delete($form, &$form_state, $tid)

Form constructor for confirming deletion of a forum taxonomy term.

Parameters

$tid: ID of the term to be deleted.

See also

forum_confirm_delete_submit()

Related topics

File

modules/forum/forum.admin.inc, line 208
Administrative page callbacks for the Forum module.

Code

function forum_confirm_delete($form, &$form_state, $tid) {
  $term = taxonomy_term_load($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/structure/forum', t('Deleting a forum or container will also delete its sub-forums, if any. To delete posts in this forum, visit <a href="@content">content administration</a> first. This action cannot be undone.', array('@content' => url('admin/content'))), t('Delete'), t('Cancel'));
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!forum!forum.admin.inc/function/forum_confirm_delete/7.x