comment_node_view_alter(array &$build, EntityInterface $node, EntityViewDisplayInterface $display)
Implements hook_ENTITY_TYPE_view_alter() for node entities.
File
- core/modules/comment/comment.module, line 237
- Enables users to comment on published content.
Code
1 2 3 4 5 | function comment_node_view_alter( array & $build , EntityInterface $node , EntityViewDisplayInterface $display ) { if (\Drupal::moduleHandler()->moduleExists( 'history' )) { $build [ '#attributes' ][ 'data-history-node-id' ] = $node ->id(); } } |
Please login to continue.