By editor, 16 December, 2015 Question How to perform an action on deletion of an Entity / Node / User ... ? Like hook_node_delete / hook_user_delete Event on Node delete. Event on User delete. Event on Entity delete... For this, You must use hook_entity_delete. Example : function mymodule_entity_delete(\Drupal\Core\Entity\EntityInterface $entity) { $entity_type = $entity->getEntityTypeId(); $entity_id = $entity->id(); if ($entity_type === 'node') { $node_type = $entity->getType(); //............ } else if ($entity_type === 'user') { //............ } } You can also use the hook_ENTITY_TYPE_delete Tags Drupal 8 Code Node User Event Subscriber to replace hook_boot and hook_init Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments