function Comment::getThread

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

File

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

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

public function getThread() {
  $thread = $this->get('thread');
  if (!empty($thread->value)) {
    return $thread->value;
  }
}

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