function Comment::getThread

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
  2. 8.9.x core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
  3. 11.x 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|null The alphadecimal representation of the comment's place in a thread. NULL is returned before a comment is saved.

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\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.