public function Comment::getThread in Drupal 9
Same name and namespace in other branches
- 8 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
Returns the alphadecimal representation of the comment's place in a thread.
Return value
string The alphadecimal representation of the comment's place in a thread.
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 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;
}
}