You are here

function node_revision_delete_node_type_delete in Node Revision Delete 7.3

Implements hook_node_type_delete().

File

./node_revision_delete.module, line 219

Code

function node_revision_delete_node_type_delete($info) {

  // Getting the content type machine name.
  $content_type = $info->type;

  // Deleting the value from the config.
  _node_revision_delete_delete_content_type_config($content_type);
}