You are here

function comment_uri in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/comment/comment.module \comment_uri()

Entity URI callback.

File

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

Code

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