You are here

function akamai_node_delete in Akamai 8

Same name and namespace in other branches
  1. 8.2 akamai.module \akamai_node_delete()
  2. 7.3 akamai.module \akamai_node_delete()
  3. 7 akamai.module \akamai_node_delete()
  4. 7.2 akamai.module \akamai_node_delete()

Implementation of hook_node_delete().

When nodes are modified, clear URL from the Akamai cache. Clear base node/% url as well as aliases.

File

./akamai.module, line 59
akamai.module Integration with the Akamai CDN Cache Control Web Service.

Code

function akamai_node_delete(\Drupal\node\NodeInterface $node) {
  $url = current_path();
  akamai_clear_url($url, array(
    'email' => AKAMAI_EMAIL_DISABLE,
  ), $node);
}