comment_multiple_delete_confirm

  1. drupal
    1. 4.7
    2. 5 comment.module
    3. 6 comment.admin.inc
    4. 7 comment.admin.inc
Versions
4.7 – 5 comment_multiple_delete_confirm()
6 comment_multiple_delete_confirm(&$form_state)
7 comment_multiple_delete_confirm($form, &$form_state)

List the selected comments and verify that the admin really wants to delete them.

Code

modules/comment.module, line 1053

<?php
function comment_multiple_delete_confirm() {
  $edit = $_POST['edit'];

  $form['comments'] = array(
    '#prefix' => '<ul>',
    '#suffix' => '</ul>',
    '#tree' => TRUE,
  );
  // array_filter() returns only elements with actual values
  $comment_counter = 0;
  foreach (array_filter($edit['comments']) as $cid => $value) {
    $comment = _comment_load($cid);
    if (is_object($comment) && is_numeric($comment->cid)) {
      $subject = db_result(db_query('SELECT subject FROM {comments} WHERE cid = %d', $cid));
      $form['comments'][$cid] = array(
        '#type' => 'hidden',
        '#value' => $cid,
        '#prefix' => '<li>',
        '#suffix' => check_plain($subject) . '</li>',
      );
      $comment_counter++;
    }
  }
  $form['operation'] = array(
    '#type' => 'hidden',
    '#value' => 'delete',
  );

  if (!$comment_counter) {
    drupal_set_message(t('There do not appear to be any comments to delete or your selected comment was deleted by another administrator.'));
    drupal_goto('admin/comment');
  }
  else {
    return confirm_form('comment_multiple_delete_confirm', $form, 
                        t('Are you sure you want to delete these comments and all their children?'), 
                        'admin/comment', t('This action cannot be undone.'), 
                        t('Delete comments'), t('Cancel'));
  }
}
?>