function comment_delete

Delete a comment and all its replies.

Parameters

$cid: The comment to delete.

2 calls to comment_delete()
comment_confirm_delete_submit in drupal/modules/comment/comment.admin.inc
Process comment_confirm_delete form submissions.
EntityCrudHookTestCase::testCommentHooks in drupal/modules/simpletest/tests/entity_crud_hook_test.test
Tests hook invocations for CRUD operations on comments.
3 string references to 'comment_delete'
node_action_info in drupal/modules/node/node.module
Implements hook_action_info().
trigger_comment_delete in drupal/modules/trigger/trigger.module
Implements hook_comment_delete().
trigger_test_action_info in drupal/modules/trigger/tests/trigger_test.module
Implements hook_action_info().

File

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

Code

function comment_delete($cid) {
  comment_delete_multiple(array(
    $cid,
  ));
}