Implements hook_modules_uninstalled().
Cleans up the {block_node_type} table from modules' blocks.
function node_modules_uninstalled($modules) { db_delete('block_node_type') ->condition('module', $modules, 'IN') ->execute(); }