You are here

function blockcache_alter_nodeapi in Block Cache Alter 6

Implementation of hook_nodeapi().

File

./blockcache_alter.module, line 318
Block Cache alter.

Code

function blockcache_alter_nodeapi($node, $op) {
  switch ($op) {
    case 'insert':
    case 'update':
    case 'delete':
      _blockcache_alter_cleanup('node', $node->type);
      break;
  }
}