comment_entity_insert

comment_entity_insert(EntityInterface $entity)

Implements hook_entity_insert().

File

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

Code

1
2
3
4
5
6
7
8
function comment_entity_insert(EntityInterface $entity) {
  // Allow bulk updates and inserts to temporarily disable the
  // maintenance of the {comment_entity_statistics} table.
  if (\Drupal::state()->get('comment.maintain_entity_statistics') &&
    $fields = \Drupal::service('comment.manager')->getFields($entity->getEntityTypeId())) {
    \Drupal::service('comment.statistics')->create($entity, $fields);
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.