You are here

function auto_expire_node_type_delete in Auto Expire 7

Implements hook_node_type_delete().

File

./auto_expire.module, line 531

Code

function auto_expire_node_type_delete($info) {
  $code = AUTO_EXPIRE_NODE_TYPE . $info->type;
  variable_del($code . '_e');
  variable_del($code . '_d');
  variable_del($code . '_w');
  variable_del($code . '_p');
}