| Versions | |
|---|---|
| 4.7 – 6 | hook_delete(&$node) |
| 7 | hook_delete($node) |
Respond to node deletion.
This hook is invoked only on the module that defines the node's content type (use hook_node_delete() to respond to all node deletions).
This hook is invoked from node_delete_multiple() after the node has been removed from the node table in the database, before hook_node_delete() is invoked, and before field_attach_delete() is called.
$node The node that is being deleted.
drupal/
<?php
function hook_delete($node) {
db_delete('mytable')
->condition('nid', $nid->nid)
->execute();
}
?>