You are here

function user_delete_comment_mass_delete in User Delete 6.2

Make mass delete of comments

IMPORTANT NOTE: This function is intended to work when called from a form submit handler. Calling it outside of the form submission process may not work correctly.

Parameters

array $comments: Array of comment cids to update.

1 call to user_delete_comment_mass_delete()
user_delete_comment_cancel in ./user_delete.module
Mimics hook_user_cancel() for comment module.

File

./user_delete.module, line 1025
Provide account cancellation methods and API to provide the same functionalty as Drupal 7 for cancelling accounts.

Code

function user_delete_comment_mass_delete($comments) {

  // We use batch processing to prevent timeout when updating a large number
  // of nodes.
  if (count($comments) > 10) {
    $batch = array(
      'operations' => array(
        array(
          '_user_delete_comment_mass_delete_batch_process',
          array(
            $comments,
          ),
        ),
      ),
      'finished' => '_user_delete_comment_mass_delete_batch_finished',
      'title' => t('Processing'),
      // We use a single multi-pass operation, so the default
      // 'Remaining x of y operations' message will be confusing here.
      'progress_message' => '',
      'error_message' => t('The delete has encountered an error.'),
    );
    batch_set($batch);
  }
  else {
    foreach ($comments as $cid) {
      _user_delete_comment_mass_delete_helper($cid);
    }
    drupal_set_message(t('The comment delete process has been performed.'));
  }
}