public function Comment::getThread in Drupal 10
Same name and namespace in other branches
- 8 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
- 9 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
File
- core/
modules/ comment/ src/ Entity/ Comment.php, line 486
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;
}
}