function Comment::getThread
Same name in other branches
- 9 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
- 10 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
- 11.x core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
Overrides CommentInterface::getThread
1 call to Comment::getThread()
- Comment::preSave in core/
modules/ comment/ src/ Entity/ Comment.php - Acts on an entity before the presave hook is invoked.
File
-
core/
modules/ comment/ src/ Entity/ Comment.php, line 494
Class
- Comment
- Defines the comment entity class.
Namespace
Drupal\comment\EntityCode
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.