function boost_expire_node_delete in Boost Expire 7
Implements hook_node_delete().
File
- ./
boost_expire.module, line 42  - Expires Boost caches automatically when certain Drupal actions are taken.
 
Code
function boost_expire_node_delete($node) {
  boost_expire_flush_boost_cache(array(
    'scope' => 'all',
  ));
}