Same name and namespace in other branches
  1. 8.9.x core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getCommentedEntity()
  2. 9 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getCommentedEntity()

Returns the entity to which the comment is attached.

Return value

\Drupal\Core\Entity\FieldableEntityInterface|null The entity on which the comment is attached or NULL if the comment is an orphan.

Overrides CommentInterface::getCommentedEntity

2 calls to Comment::getCommentedEntity()
Comment::postSave in core/modules/comment/src/Entity/Comment.php
Acts on a saved entity before the insert or update hook is invoked.
Comment::referencedEntities in core/modules/comment/src/Entity/Comment.php
Gets a list of entities referenced by this entity.

File

core/modules/comment/src/Entity/Comment.php, line 355

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

public function getCommentedEntity() {
  return $this
    ->get('entity_id')->entity;
}