comment_uri

comment_uri(CommentInterface $comment)

Entity URI callback.

File

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

Code

1
2
3
4
5
6
7
8
9
function comment_uri(CommentInterface $comment) {
  return new Url(
  'entity.comment.canonical',
  array(
    'comment' => $comment->id(),
  ),
  array('fragment' => 'comment-' . $comment->id())
  );
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.