function comment_load

7.x comment.module comment_load($cid, $reset = FALSE)

Load the entire comment by cid.

Parameters

$cid: The identifying comment id.

$reset: Whether to reset the internal static entity cache. Note that the static cache is disabled in comment_entity_info() by default.

Return value

The comment object.

20 calls to comment_load()
CommentActionsTestCase::testCommentPublishUnpublishActions in drupal-7.x/modules/comment/comment.test
Test comment publish and unpublish actions.
CommentContentRebuild::testCommentRebuild in drupal-7.x/modules/comment/comment.test
Test to ensure that the comment's content array is rebuilt for every call to comment_view().
CommentInterfaceTest::testCommentInterface in drupal-7.x/modules/comment/comment.test
Test comment interface.
CommentInterfaceTest::testCommentNodeCommentStatistics in drupal-7.x/modules/comment/comment.test
Tests the node comment statistics.
CommentNodeAccessTest::testThreadedCommentView in drupal-7.x/modules/comment/comment.test
Test that threaded comments can be viewed.

... See full list

File

drupal-7.x/modules/comment/comment.module, line 1683
Enables users to comment on published content.

Code

function comment_load($cid, $reset = FALSE) {
  $comment = comment_load_multiple(array($cid), array(), $reset);
  return $comment ? $comment[$cid] : FALSE;
}