You are here

function rabbit_hole_node_type_delete in Rabbit Hole 7

Implements hook_node_type_delete().

File

./rabbit_hole.module, line 263
Main module file for Rabbit Hole.

Code

function rabbit_hole_node_type_delete($info) {

  // Delete variables connected to this content type.
  variable_del('rabbit_hole_action_' . $info->type);
  variable_del('rabbit_hole_redirect_' . $info->type);
  variable_del('rabbit_hole_redirect_response_' . $info->type);
}