public Comment::permalink()
Returns the permalink URL for this comment.
Return value
Overrides CommentInterface::permalink
File
- core/modules/comment/src/Entity/Comment.php, line 201
Class
- Comment
- Defines the comment entity class.
Namespace
Drupal\comment\Entity
Code
1 2 3 4 5 | public function permalink() { $uri = $this ->urlInfo(); $uri ->setOption( 'fragment' , 'comment-' . $this ->id()); return $uri ; } |
Please login to continue.