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 modules/comment/comment.admin.inc
Process comment_confirm_delete form submissions.
EntityCrudHookTestCase::testCommentHooks in 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 modules/node/node.module
Implements hook_action_info().
trigger_comment_delete in modules/trigger/trigger.module
Implements hook_comment_delete().
trigger_test_action_info in modules/trigger/tests/trigger_test.module
Implements hook_action_info().

File

modules/comment/comment.module, line 1621

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.