You are here

function content_type_groups_node_type_delete in Content type groups 7.2

Same name and namespace in other branches
  1. 7 content_type_groups.module \content_type_groups_node_type_delete()

Implements hook_node_type_delete().

Removes the references for the content type being deleted.

File

./content_type_groups.module, line 42
Module file for the Content type groups module.

Code

function content_type_groups_node_type_delete($info) {
  ContentTypeGroup::removeContentType($info->type);
}