You are here

function comment_node_links_alter in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/comment.module \comment_node_links_alter()
  2. 10 core/modules/comment/comment.module \comment_node_links_alter()

Implements hook_node_links_alter().

File

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

Code

function comment_node_links_alter(array &$links, NodeInterface $node, array &$context) {

  // Comment links are only added to node entity type for backwards
  // compatibility. Should you require comment links for other entity types you
  // can do so by implementing a new field formatter.
  // @todo Make this configurable from the formatter. See
  //   https://www.drupal.org/node/1901110.
  $comment_links = \Drupal::service('comment.link_builder')
    ->buildCommentedEntityLinks($node, $context);
  $links += $comment_links;
}