You are here

function shareaholic_node_delete in Share Buttons, Related Posts, Content Analytics - Shareaholic 8

Same name and namespace in other branches
  1. 7.3 includes/node.php \shareaholic_node_delete()

Implements hook_node_delete(). When a node is deleted, notify CM

Parameters

$node The node that has been deleted:

File

includes/node.php, line 43
This file is responsible for containing hooks involving nodes

Code

function shareaholic_node_delete($node) {
  ShareaholicContentSettings::delete($node);
  ShareaholicContentManager::single_page_worker($node);
}