Same name and namespace in other branches
  1. 7.x modules/comment/comment.module \comment_uri()
  2. 8.9.x core/modules/comment/comment.module \comment_uri()
  3. 9 core/modules/comment/comment.module \comment_uri()

Entity URI callback.

File

core/modules/comment/comment.module, line 74
Enables users to comment on published content.

Code

function comment_uri(CommentInterface $comment) {
  return new Url('entity.comment.canonical', [
    'comment' => $comment
      ->id(),
  ], [
    'fragment' => 'comment-' . $comment
      ->id(),
  ]);
}