You are here

function history_node_delete in Drupal 9

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

Implements hook_ENTITY_TYPE_delete() for node entities.

File

core/modules/history/history.module, line 158
Records which users have read which content.

Code

function history_node_delete(EntityInterface $node) {
  \Drupal::database()
    ->delete('history')
    ->condition('nid', $node
    ->id())
    ->execute();
}