node_delete

Versions
4.6
node_delete($edit)
4.7 – 7
node_delete($nid)

Delete a node.

▾ 4 functions call node_delete()

blogapi_blogger_delete_post in modules/blogapi.module
Blogging API callback. Removes the specified blog node.
forum_taxonomy in modules/forum.module
Implementation of hook_taxonomy().
node_delete_confirm_submit in modules/node.module
Execute node deletion
node_multiple_delete_confirm_submit in modules/node.module

Code

modules/node.module, line 1968

<?php
function node_delete($nid) {

  $node = node_load($nid);

  if (node_access('delete', $node)) {
    db_query('DELETE FROM {node} WHERE nid = %d', $node->nid);
    db_query('DELETE FROM {node_revisions} WHERE nid = %d', $node->nid);

    // Call the node-specific callback (if any):
    node_invoke($node, 'delete');
    node_invoke_nodeapi($node, 'delete');

    // Clear the cache so an anonymous poster can see the node being deleted.
    cache_clear_all();

    // Remove this node from the search index if needed.
    if (function_exists('search_wipe')) {
      search_wipe($node->nid, 'node');
    }
    drupal_set_message(t('%title has been deleted.', array('%title' => theme('placeholder', $node->title))));
    watchdog('content', t('%type: deleted %title.', array('%type' => theme('placeholder', t($node->type)), '%title' => theme('placeholder', $node->title))));
  }
}
?>
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.