function _user_delete_comment_mass_delete_helper in User Delete 6.2
comment Mass Update - helper function.
2 calls to _user_delete_comment_mass_delete_helper()
- user_delete_comment_mass_delete in ./
user_delete.module - Make mass delete of comments
- _user_delete_comment_mass_delete_batch_process in ./
user_delete.module - comment Mass Update Batch operation
File
- ./
user_delete.module, line 1056 - Provide account cancellation methods and API to provide the same functionalty as Drupal 7 for cancelling accounts.
Code
function _user_delete_comment_mass_delete_helper($cid) {
$comment = _user_delete_comment_load($cid);
_user_delete_comment_delete_thread($comment);
return $comment;
}