hook_node_revision_delete

Versions
7
hook_node_revision_delete($node)

Respond to deletion of a node revision.

This hook is invoked from node_revision_delete() after the revision has been removed from the node_revision table, and before field_attach_delete_revision() is called.

Parameters

$node The node revision (node object) that is being deleted.

Related topics

Code

modules/node/node.api.php, line 288

<?php
function hook_node_revision_delete($node) {
  db_delete('upload')->condition('vid', $node->vid)->execute();
  if (!is_array($node->files)) {
    return;
  }
  foreach ($node->files as $file) {
    file_delete($file);
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.