comment_multiple_delete_confirm_submit

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

Perform the actual comment deletion.

File

modules/comment/comment.module, line 1300
Enables users to comment on published content.

Code

function comment_multiple_delete_confirm_submit($form_id, $form_values) {
  if ($form_values['confirm']) {
    foreach ($form_values['comments'] as $cid => $value) {
      $comment = _comment_load($cid);
      _comment_delete_thread($comment);
      _comment_update_node_statistics($comment->nid);
    }
    cache_clear_all();
    drupal_set_message(t('The comments have been deleted.'));
  }
  drupal_goto('admin/content/comment');
}
Login or register to post comments