function comment_uri

Entity URI callback.

File

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

Code

function comment_uri(Comment $comment) {
  return array(
    'path' => 'comment/' . $comment->cid,
    'options' => array(
      'fragment' => 'comment-' . $comment->cid,
    ),
  );
}